Question: public void insertFirst ( I x ) { if ( this . isFull ( ) ) throw new RuntimeException ( Error: Cannot insert an

public void insertFirst(I x){
if(this.isFull())
throw new RuntimeException("Error: Cannot insert an item into a full list.");
for(int i=listTail; i >0; i--)
this.listElements[i]= this.listElements[i-1];
this.listElements[0]= x;
this.listTail++;
}
Which of the following tests could only be generated using the white box test case generation method? (check all that apply)
Note: remember that ArrayedList has an instance variable called this.capacity which stores holds the size of the array in which the list items are stored.
Group of answer choices
Call insertFirst() when listTail is 0.
Call insertFirst() when listTail is large.
Call insertFirst() when the list is full.
Call insertFirst when the list is non-empty.
Call insertFirst() when there are exactly this.capacity items in the list.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!