(t *testing.T)
| 546 | } |
| 547 | |
| 548 | func TestNewContextVariable(t *testing.T) { |
| 549 | ctx := NewContextVariable("qualified.type.name") |
| 550 | if ctx.TypeName != "qualified.type.name" { |
| 551 | t.Errorf("NewContextVariable() got name: %s, wanted %s", ctx.TypeName, "qualified.type.name") |
| 552 | } |
| 553 | } |
| 554 | |
| 555 | func TestContextVariableValidate(t *testing.T) { |
| 556 | ctx := NewContextVariable("") |
nothing calls this directly
no test coverage detected