Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestPatchOptionsIsSuperSetOfUpdateOptions (0.36 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/options_test.go

    limitations under the License.
    */
    
    package v1
    
    import (
    	"encoding/json"
    	"fmt"
    	"reflect"
    	"testing"
    
    	fuzz "github.com/google/gofuzz"
    )
    
    func TestPatchOptionsIsSuperSetOfUpdateOptions(t *testing.T) {
    	f := fuzz.New()
    	for i := 0; i < 1000; i++ {
    		t.Run(fmt.Sprintf("Run %d/1000", i), func(t *testing.T) {
    			update := UpdateOptions{}
    			f.Fuzz(&update)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 04 21:51:48 UTC 2019
    - 1.6K bytes
    - Viewed (0)
Back to top