mirror of
https://github.com/json-iterator/go.git
synced 2024-11-24 08:22:14 +02:00
16 lines
314 B
Go
16 lines
314 B
Go
package jsoniter
|
|
|
|
import (
|
|
"github.com/stretchr/testify/require"
|
|
"testing"
|
|
)
|
|
|
|
func Test_read_null_as_any(t *testing.T) {
|
|
should := require.New(t)
|
|
any := Get([]byte(`null`))
|
|
should.Equal(0, any.ToInt())
|
|
should.Equal(float64(0), any.ToFloat64())
|
|
should.Equal("", any.ToString())
|
|
should.False(any.ToBool())
|
|
}
|