go/src/encoding/gob/type_test.go

type typeT

var basicTypes

func getTypeUnlocked(name string, rt reflect.Type) gobType {}

// Sanity checks
func TestBasic(t *testing.T) {}

// Reregister some basic types to check registration is idempotent.
func TestReregistration(t *testing.T) {}

func TestArrayType(t *testing.T) {}

func TestSliceType(t *testing.T) {}

func TestMapType(t *testing.T) {}

type Bar

type Foo

func TestStructType(t *testing.T) {}

// Should be OK to register the same type multiple times, as long as they're
// at the same level of indirection.
func TestRegistration(t *testing.T) {}

type N1

type N2

// See comment in type.go/Register.
func TestRegistrationNaming(t *testing.T) {}

func TestStressParallel(t *testing.T) {}

// Issue 23328. Note that this test name is known to cmd/dist/test.go.
func TestTypeRace(t *testing.T) {}