1
0
mirror of https://github.com/json-iterator/go.git synced 2025-04-04 21:34:16 +02:00
json-iterator/api_tests/decoder_test.go
2018-02-05 23:05:57 +08:00

18 lines
362 B
Go

package test
import (
"bytes"
"encoding/json"
"github.com/stretchr/testify/require"
"testing"
)
func Test_disallowUnknownFields(t *testing.T) {
should := require.New(t)
type TestObject struct{}
var obj TestObject
decoder := json.NewDecoder(bytes.NewBufferString(`{"field1":100}`))
decoder.DisallowUnknownFields()
should.Error(decoder.Decode(&obj))
}