(t *testing.T)
| 190 | } |
| 191 | |
| 192 | func TestNonInitImage(t *testing.T) { |
| 193 | image := new(Image) |
| 194 | assert.Len(t, image.Name(), 0, "not setup") |
| 195 | assert.Len(t, image.KubeImage(), 0, "not setup") |
| 196 | assert.EqualValues(t, docker.PushImageOptions{}, image.PushOptions(nil, false), "not setup") |
| 197 | } |
| 198 | |
| 199 | type testSampleWriter int |
| 200 |
nothing calls this directly
no test coverage detected