(t *testing.T)
| 203 | } |
| 204 | |
| 205 | func TestParseInputDefinitionsNil(t *testing.T) { |
| 206 | result := ParseInputDefinitions(nil) |
| 207 | if result != nil { |
| 208 | t.Errorf("Expected nil result for nil input, got %v", result) |
| 209 | } |
| 210 | } |
| 211 | |
| 212 | func TestInputDefinitionGetDefaultAsString(t *testing.T) { |
| 213 | tests := []struct { |
nothing calls this directly
no test coverage detected