Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/test/pkg/report/report.go
2498 views
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
5
package report
6
7
import "testing"
8
9
func 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