(t *testing.T)
| 84 | } |
| 85 | |
| 86 | func TestString_Raw(t *testing.T) { |
| 87 | reporter := newMockReporter(t) |
| 88 | |
| 89 | value := NewString(reporter, "foo") |
| 90 | |
| 91 | assert.Equal(t, "foo", value.Raw()) |
| 92 | value.chain.assert(t, success) |
| 93 | } |
| 94 | |
| 95 | func TestString_Decode(t *testing.T) { |
| 96 | t.Run("target is empty interface", func(t *testing.T) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…