对于我的课程,我们正在创建 ArrayStacks 和 LinkedStacks,而不是使用 J-Unit 练习测试。我们的一项测试是在 clear() 方法上。我们的教授特别要求我们将堆栈中的每个元素都清空,然后测试它们是否为空。我该怎么做呢?
public void clear() {
// Checks if this stack is empty,
// otherwise clears this stack.
if(!isEmpty()){
for(int i = 0; i < sizeIs(); i++){
pop();
}
topIndex = -1;
}
}
public class Test_clear {
/*
* Class to test the clear method added to the Stack ADT of Lab04
*
* tests clear on an empty stack
* a stack with one element
* a stack with many (but less than full) elements
* and a "full" ArrayStack (not applicable to Linked Stack - comment it out)
*/
ArrayStack stk1, stk2;
@Before
public void setUp() throws Exception {
stk1 = new ArrayStack(); stk2 = new ArrayStack();
}
@Test
public void test_clear_on_an_emptyStack() {
stk1.clear();
Assert.assertEquals(true, stk1.isEmpty());
}
@Test
public void test_clear_on_a_stack_with_1_element() {
stk1.push(5);
stk1.clear();
Assert.assertEquals(true, stk1.isEmpty())'
}
等等。但是在 isEmpty() 上检查 assertEquals 不会测试我的数组中的元素是否被清除。提前致谢!