Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for TestEncode (0.18 sec)

  1. src/encoding/base32/base32_test.go

    }
    
    func testEqual(t *testing.T, msg string, args ...any) bool {
    	t.Helper()
    	if args[len(args)-2] != args[len(args)-1] {
    		t.Errorf(msg, args...)
    		return false
    	}
    	return true
    }
    
    func TestEncode(t *testing.T) {
    	for _, p := range pairs {
    		got := StdEncoding.EncodeToString([]byte(p.decoded))
    		testEqual(t, "Encode(%q) = %q, want %q", p.decoded, got, p.encoded)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/scheme_test.go

    		} else if e, a := item.expected, gotDecoded; !reflect.DeepEqual(e, a) {
    			t.Errorf("%d: unexpected objects:\n%s", i, diff.ObjectGoPrintSideBySide(e, a))
    		}
    	}
    }
    
    func TestEncode(t *testing.T) {
    	internalGV := schema.GroupVersion{Group: "test.group", Version: runtime.APIVersionInternal}
    	internalGVK := internalGV.WithKind("Simple")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json_test.go

    func (testEncodableMap[K]) GetObjectKind() schema.ObjectKind {
    	panic("unimplemented")
    }
    
    func (testEncodableMap[K]) DeepCopyObject() runtime.Object {
    	panic("unimplemented")
    }
    
    func TestEncode(t *testing.T) {
    	for _, tc := range []struct {
    		name string
    		in   runtime.Object
    		want []byte
    	}{
    		// The Go visibility rules for struct fields are amended for JSON when deciding
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:55:02 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top