Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestStructNonStruct (0.2 sec)

  1. src/encoding/gob/encoder_test.go

    		val := reflect.ValueOf(test.out).Elem().Interface()
    		if !reflect.DeepEqual(test.in, val) {
    			t.Errorf("decoding singleton: expected %v got %v", test.in, val)
    		}
    	}
    }
    
    func TestStructNonStruct(t *testing.T) {
    	type Struct struct {
    		A string
    	}
    	type NonStruct string
    	s := Struct{"hello"}
    	var sp Struct
    	if err := encAndDec(s, &sp); err != nil {
    		t.Error(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top