(t *testing.T)
| 43 | } |
| 44 | |
| 45 | func TestNewStaticNil(t *testing.T) { |
| 46 | s := NewStaticNil() |
| 47 | assert.Equal(t, TypeNil, s.Type) |
| 48 | assert.Equal(t, Static{}, s) |
| 49 | } |
| 50 | |
| 51 | func TestStatic_Int(t *testing.T) { |
| 52 | tests := []struct { |
nothing calls this directly
no test coverage detected