Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestJSONSchemaPropsOrBoolUnmarshalJSON (0.3 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/marshal_test.go

    	"reflect"
    	"testing"
    )
    
    type JSONSchemaPropsOrBoolHolder struct {
    	JSPoB          JSONSchemaPropsOrBool  `json:"val1"`
    	JSPoBOmitEmpty *JSONSchemaPropsOrBool `json:"val2,omitempty"`
    }
    
    func TestJSONSchemaPropsOrBoolUnmarshalJSON(t *testing.T) {
    	cases := []struct {
    		input  string
    		result JSONSchemaPropsOrBoolHolder
    	}{
    		{`{}`, JSONSchemaPropsOrBoolHolder{}},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 15 16:26:13 UTC 2019
    - 7.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/marshal_test.go

    	"reflect"
    	"testing"
    )
    
    type JSONSchemaPropsOrBoolHolder struct {
    	JSPoB          JSONSchemaPropsOrBool  `json:"val1"`
    	JSPoBOmitEmpty *JSONSchemaPropsOrBool `json:"val2,omitempty"`
    }
    
    func TestJSONSchemaPropsOrBoolUnmarshalJSON(t *testing.T) {
    	cases := []struct {
    		input  string
    		result JSONSchemaPropsOrBoolHolder
    	}{
    		{`{}`, JSONSchemaPropsOrBoolHolder{}},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 10 12:12:24 UTC 2018
    - 7.1K bytes
    - Viewed (0)
Back to top