(t *testing.T, path string)
| 891 | } |
| 892 | |
| 893 | func toAbsPath(t *testing.T, path string) string { |
| 894 | cwd, err := os.Getwd() |
| 895 | if !assert.NoError(t, err) { |
| 896 | t.FailNow() |
| 897 | } |
| 898 | return filepath.Join(cwd, path) |
| 899 | } |
| 900 | |
| 901 | type nonKRMTestCase struct { |
| 902 | name string |
no outgoing calls
no test coverage detected