(t *testing.T)
| 68 | } |
| 69 | |
| 70 | func TestNumber_Raw(t *testing.T) { |
| 71 | reporter := newMockReporter(t) |
| 72 | |
| 73 | value := NewNumber(reporter, 123.0) |
| 74 | |
| 75 | assert.Equal(t, 123.0, value.Raw()) |
| 76 | value.chain.assert(t, success) |
| 77 | } |
| 78 | |
| 79 | func TestNumber_Decode(t *testing.T) { |
| 80 | t.Run("target is empty interface", func(t *testing.T) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…