shad-go/illegal/field_test.go
2021-04-14 18:41:01 +03:00

18 lines
346 B
Go

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())
}