(b bool)
| 2338 | } |
| 2339 | |
| 2340 | func newBoolPtr(b bool) *bool { |
| 2341 | boolPtr := new(bool) |
| 2342 | *boolPtr = b |
| 2343 | return boolPtr |
| 2344 | } |
| 2345 | |
| 2346 | func TestTransformDriverManagerInitContainer(t *testing.T) { |
| 2347 | testCases := []struct { |
no outgoing calls
no test coverage detected