zengyuli / BigBang

SE 323 Assignment 01
0 stars 2 forks source link

Assignment 04 Feedback #13

Open azdvorak opened 7 years ago

azdvorak commented 7 years ago

(1) Unit tests not implemented

@Test
    public void test() {
        fail("Not yet implemented");
    }

(2) You should have a test class for each src class. For example, the PlantController.java class should have a TestPlantController.java counterpart.

(3) Unit tests should be in a "test" directory that mirrors the "src" directory. When you do this, your Test classes can have the same package name as the class under test. For example, their "src" counterpart.