-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstack_test.go
62 lines (56 loc) · 1.08 KB
/
stack_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
57
58
59
60
61
62
package kgo
import "testing"
func TestNewStack(t *testing.T) {
stack := NewStack[int]()
if stack != nil {
t.Log("stack is not nil")
} else {
t.Errorf("stack is nil")
}
}
func TestStack_Push(t *testing.T) {
stack := NewStack[int]()
stack.Push(1)
stack.Push(2)
stack.Push(3)
if stack.Size() != 3 {
t.Errorf("stack size is not 3")
} else {
t.Log("stack size is 3")
}
}
func TestStack_Pop(t *testing.T) {
stack := NewStack[int]()
stack.Push(1)
stack.Push(2)
stack.Push(3)
element, err := stack.Pop()
if err != nil {
t.Errorf("pop error: %s", err)
} else if element != 3 {
t.Errorf("pop element is not 3")
}
}
func TestStack_Peek(t *testing.T) {
stack := NewStack[int]()
stack.Push(1)
stack.Push(2)
stack.Push(3)
element, err := stack.Peek()
if err != nil {
t.Errorf("peek error: %s", err)
} else if element != 3 {
t.Errorf("peek element is not 3")
}
}
func TestStack_Size(t *testing.T) {
stack := NewStack[int]()
stack.Push(1)
stack.Push(2)
stack.Push(3)
if stack.Size() != 3 {
t.Errorf("stack size is not 3")
} else {
t.Log("stack size is 3")
}
}