go/src/container/list/list_test.go

func checkListLen(t *testing.T, l *List, len int) bool {}

func checkListPointers(t *testing.T, l *List, es []*Element) {}

func TestList(t *testing.T) {}

func checkList(t *testing.T, l *List, es []any) {}

func TestExtending(t *testing.T) {}

func TestRemove(t *testing.T) {}

func TestIssue4103(t *testing.T) {}

func TestIssue6349(t *testing.T) {}

func TestMove(t *testing.T) {}

// Test PushFront, PushBack, PushFrontList, PushBackList with uninitialized List
func TestZeroList(t *testing.T) {}

// Test that a list l is not modified when calling InsertBefore with a mark that is not an element of l.
func TestInsertBeforeUnknownMark(t *testing.T) {}

// Test that a list l is not modified when calling InsertAfter with a mark that is not an element of l.
func TestInsertAfterUnknownMark(t *testing.T) {}

// Test that a list l is not modified when calling MoveAfter or MoveBefore with a mark that is not an element of l.
func TestMoveUnknownMark(t *testing.T) {}