Archived
1
0
Fork 0

Finished implementing the stackstack

This commit is contained in:
Julien Dessaux 2021-10-04 20:10:21 +02:00
commit c9b3a999bd
4 changed files with 17 additions and 0 deletions

View file

@ -22,6 +22,14 @@ suite "StackStack":
empty[].Push(3)
empty[].Clear()
check empty[].Pop() == 0
test "Duplicate":
var empty = NewStackStack()
empty[].Clear()
check empty[].Pop() == 0
test "Swap":
var empty = NewStackStack()
empty[].Swap()
check empty[].Pop() == 0
test "Begin":
var empty = NewStackStack()
empty[].Begin((1, 2))