1// Copyright (c) 2022 Gitpod GmbH. All rights reserved. 2// Licensed under the GNU Affero General Public License (AGPL). 3// See License.AGPL.txt in the project root for license information. 4 5package report 6 7import "testing" 8 9func SetupReport(t *testing.T, feat Feature, desc string) { 10 // Output the feature type of this test for the Quality Assurance Report 11 t.Log(feat) 12 // Output the description of this test for the Quality Assurance Report 13 t.Log(desc) 14} 15 16