shad-go/illegal/field_test.go

19 lines
346 B
Go
Raw Normal View History

2021-04-14 15:41:01 +00:00
package illegal_test
import (
"testing"
"github.com/stretchr/testify/assert"
"gitlab.com/slon/shad-go/illegal"
"gitlab.com/slon/shad-go/illegal/internal"
)
func TestIllegalField(t *testing.T) {
var s internal.Struct
illegal.SetPrivateField(&s, "a", 10)
illegal.SetPrivateField(&s, "b", "foo")
assert.Equal(t, "10 foo", s.String())
}