// CSE 143, Summer 2017 // // A file for testing ArrayIntList public class ArrayIntListTest { public static void main(String[] args) { // The size in ArrayIntList is initialized to 1, // instead of 0, in the constructor. Here are two // ways to see something is wrong. ArrayIntList test = new ArrayIntList(); System.out.println("After initialization:"); System.out.println(" Is the size 0? " + (test.size() == 0)); System.out.println(" Is it empty? " + test.isEmpty()); System.out.println(); // More tests go here! } }