-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain_test.go
56 lines (47 loc) · 1.07 KB
/
main_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package problem06
import (
"testing"
)
func TestAddAndGetSingleElement(t *testing.T) {
list := NewXORLinkedList()
list.Add(10)
val, err := list.Get(0)
if err != nil || val != 10 {
t.Errorf("Expected 10 at index 0, got %d (err: %v)", val, err)
}
}
func TestAddMultipleElements(t *testing.T) {
list := NewXORLinkedList()
list.Add(10)
list.Add(20)
list.Add(30)
list.Add(40)
expected := []int{10, 20, 30, 40}
for i, v := range expected {
val, err := list.Get(i)
if err != nil || val != v {
t.Errorf("Expected %d at index %d, got %d (err: %v)", v, i, val, err)
}
}
}
func TestGetWithInvalidIndex(t *testing.T) {
list := NewXORLinkedList()
list.Add(10)
list.Add(20)
_, err := list.Get(3)
if err == nil {
t.Error("Expected error for invalid index, got none")
}
}
func TestAddAndRetrieveSequentially(t *testing.T) {
list := NewXORLinkedList()
for i := 0; i < 1000; i++ {
list.Add(i)
}
for i := 0; i < 1000; i++ {
val, err := list.Get(i)
if err != nil || val != i {
t.Errorf("Expected %d at index %d, got %d (err: %v)", i, i, val, err)
}
}
}