kubernetes/staging/src/k8s.io/apimachinery/pkg/runtime/converter_test.go

var simpleEquality

type A

type B

type C

type D

type E

type F

type G

type H

type I

type UnknownLevel1

type InlinedAA

type InlinedAAA

type UnknownLevel2

type InlinedBB

type InlinedBBB

type UnknownLevel3

type InlinedCC

type InlinedCCC

type CustomValue

// MarshalJSON has a value receiver on this type.
func (c CustomValue) MarshalJSON() ([]byte, error) {}

type CustomPointer

// MarshalJSON has a pointer receiver on this type.
func (c *CustomPointer) MarshalJSON() ([]byte, error) {}

func doRoundTrip(t *testing.T, item interface{}

func TestRoundTrip(t *testing.T) {}

// TestUnknownFields checks for the collection of unknown
// field errors from the various possible locations of
// unknown fields (e.g. fields on struct, inlined struct, slice, etc)
func TestUnknownFields(t *testing.T) {}

// BenchmarkFromUnstructuredWithValidation benchmarks
// the time and memory required to perform FromUnstructured
// with the various validation directives (Ignore, Warn, Strict)
func BenchmarkFromUnstructuredWithValidation(b *testing.B) {}

// Verifies that:
// 1) serialized json -> object
// 2) serialized json -> map[string]interface{} -> object
// produces the same object.
func doUnrecognized(t *testing.T, jsonData string, item interface{}

func TestUnrecognized(t *testing.T) {}

func TestDeepCopyJSON(t *testing.T) {}

func TestFloatIntConversion(t *testing.T) {}

func TestIntFloatConversion(t *testing.T) {}

func TestCustomToUnstructured(t *testing.T) {}

func TestCustomToUnstructuredTopLevel(t *testing.T) {}