mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
clean up for public use: make some stuff private, add doc comments.
R=rsc DELTA=298 (202 added, 0 deleted, 96 changed) OCL=32006 CL=32224
This commit is contained in:
parent
3ff5e727e2
commit
5aa174557a
7 changed files with 294 additions and 92 deletions
|
|
@ -70,7 +70,7 @@ func TestBasicEncoder(t *testing.T) {
|
|||
t.Fatal("error decoding ET1 type:", err);
|
||||
}
|
||||
info := getTypeInfo(reflect.Typeof(ET1{}));
|
||||
trueWire1 := &wireType{s: info.typeId.gobType().(*structType)};
|
||||
trueWire1 := &wireType{s: info.id.gobType().(*structType)};
|
||||
if !reflect.DeepEqual(wire1, trueWire1) {
|
||||
t.Fatalf("invalid wireType for ET1: expected %+v; got %+v\n", *trueWire1, *wire1);
|
||||
}
|
||||
|
|
@ -91,7 +91,7 @@ func TestBasicEncoder(t *testing.T) {
|
|||
t.Fatal("error decoding ET2 type:", err);
|
||||
}
|
||||
info = getTypeInfo(reflect.Typeof(ET2{}));
|
||||
trueWire2 := &wireType{s: info.typeId.gobType().(*structType)};
|
||||
trueWire2 := &wireType{s: info.id.gobType().(*structType)};
|
||||
if !reflect.DeepEqual(wire2, trueWire2) {
|
||||
t.Fatalf("invalid wireType for ET2: expected %+v; got %+v\n", *trueWire2, *wire2);
|
||||
}
|
||||
|
|
@ -107,7 +107,7 @@ func TestBasicEncoder(t *testing.T) {
|
|||
}
|
||||
// 8) The value of et1
|
||||
newEt1 := new(ET1);
|
||||
et1Id := getTypeInfo(reflect.Typeof(*newEt1)).typeId;
|
||||
et1Id := getTypeInfo(reflect.Typeof(*newEt1)).id;
|
||||
err = decode(b, et1Id, newEt1);
|
||||
if err != nil {
|
||||
t.Fatal("error decoding ET1 value:", err);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue