(t *testing.T)
| 47 | } |
| 48 | |
| 49 | func TestFindInstance_EmptyList(t *testing.T) { |
| 50 | result := findInstance([]api.Instance{}, "anything") |
| 51 | assert.Nil(t, result) |
| 52 | } |
| 53 | |
| 54 | func TestFindInstance_ReturnsPointerToOriginal(t *testing.T) { |
| 55 | instances := sampleInstances() |
nothing calls this directly
no test coverage detected