(t *testing.T)
| 453 | } |
| 454 | |
| 455 | func TestConfigAddVariableDeclsEmpty(t *testing.T) { |
| 456 | if len(NewConfig("").AddVariables().Variables) != 0 { |
| 457 | t.Error("AddVariables() with no args failed") |
| 458 | } |
| 459 | } |
| 460 | |
| 461 | func TestConfigAddFunctionDecls(t *testing.T) { |
| 462 | tests := []struct { |
nothing calls this directly
no test coverage detected