skipList / src / Rectangle1Test.java
Rectangle1Test.java
Raw
import student.TestCase;

/**
 * 
 * @author nickgrifasi
 * @version 9/20/21 Tests the main() method within
 * Rectangle1. Runs the project.
 */
public class Rectangle1Test extends TestCase {

    /**
     * Sets up test cases
     */
    public void setUp() {
        //method left intentionally empty
    }

    /**
     * tests the main method
     */
    public void testMain() {
        String[] file = new String[1];
        file[0] = "P1test1.txt";  
        assertEquals(1, file.length);
        Rectangle1 rectangleMain = new Rectangle1();
        rectangleMain.main(file);
        
        String[] file2 = new String[10];
        rectangleMain.main(file2);
        assertEquals(10, file2.length);
    }

}