(t *testing.T)
| 125 | } |
| 126 | |
| 127 | func TestBoolean_Path(t *testing.T) { |
| 128 | reporter := newMockReporter(t) |
| 129 | |
| 130 | value := NewBoolean(reporter, true) |
| 131 | |
| 132 | assert.Equal(t, true, value.Path("$").Raw()) |
| 133 | value.chain.assert(t, success) |
| 134 | } |
| 135 | |
| 136 | func TestBoolean_Schema(t *testing.T) { |
| 137 | reporter := newMockReporter(t) |
nothing calls this directly
no test coverage detected
searching dependent graphs…