(t *testing.T)
| 160 | } |
| 161 | |
| 162 | func TestConfigFile(t *testing.T) { |
| 163 | configFilename := "configFilename" |
| 164 | configFile := New(configFilename) |
| 165 | |
| 166 | assert.Check(t, is.Equal(configFilename, configFile.Filename)) |
| 167 | } |
| 168 | |
| 169 | type mockNativeStore struct { |
| 170 | GetAllCallCount int |
nothing calls this directly
no test coverage detected
searching dependent graphs…