kubernetes/test/integration/apiserver/cel/typeresolution_test.go

func TestTypeResolver(t *testing.T) {}

// TestBuiltinResolution asserts that all resolver implementations should
// resolve Kubernetes built-in types without error.
func TestBuiltinResolution(t *testing.T) {}

// simpleCompileCEL compiles the CEL expression against the schema
// with the practical defaults.
// `self` is defined as the object being evaluated against.
func simpleCompileCEL(schema *spec.Schema, expression string) (cel.Program, error) {}

// sampleReplicatedDeployment returns a sample Deployment with 2 replicas.
// The object is not inlined because the schema of Deployment is well-known
// and thus requires no reference when reading the test cases.
func sampleReplicatedDeployment() *appsv1.Deployment {}

func installCRD(apiExtensionClient extclientset.Interface) (*apiextensionsv1.CustomResourceDefinition, error) {}

type simpleActivation

func (a *simpleActivation) ResolveName(name string) (interface{}

func (a *simpleActivation) Parent() interpreter.Activation {}

func buildTestScheme() *runtime.Scheme {}