shad-go/illegal/field_test.go
2022-04-17 18:28:33 +03:00

19 lines
347 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())
}