(t *testing.T)
| 8 | ) |
| 9 | |
| 10 | func TestDriverItemsMap(t *testing.T) { |
| 11 | itemsMap := op.GetDriverInfoMap() |
| 12 | if len(itemsMap) != 0 { |
| 13 | t.Logf("driverInfoMap: %v", itemsMap) |
| 14 | } else { |
| 15 | t.Errorf("expected driverInfoMap not empty, but got empty") |
| 16 | } |
| 17 | } |
nothing calls this directly
no test coverage detected