14 lines
330 B
Groovy
14 lines
330 B
Groovy
|
class StackSpec extends Specification {
|
||
|
def "Hinzufügen eines Elementes vergrößert die Größe des Stacks"() { // 1
|
||
|
|
||
|
setup: "Eine neue Stack Instanz wird erstellt" // 2
|
||
|
def stack = new Stack()
|
||
|
|
||
|
when: // 3
|
||
|
stack.push(42);
|
||
|
|
||
|
then: //4
|
||
|
stack.size() == 1
|
||
|
}
|
||
|
|
||
|
}
|