Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestMutatingWebhookAccessor (0.19 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors_test.go

    */
    
    package webhook
    
    import (
    	"fmt"
    	"reflect"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	fuzz "github.com/google/gofuzz"
    	v1 "k8s.io/api/admissionregistration/v1"
    )
    
    func TestMutatingWebhookAccessor(t *testing.T) {
    	f := fuzz.New()
    	for i := 0; i < 100; i++ {
    		t.Run(fmt.Sprintf("Run %d/100", i), func(t *testing.T) {
    			orig := &v1.MutatingWebhook{}
    			f.Fuzz(orig)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top