import junit.framework.TestCase;

/**
 * A JUnit test case class.
 * Every method starting with the word "test" will
 * be called when running
 * the test with JUnit.
 */
public class ChapterTester extends TestCase {
    
    
    public void testFirstConstructor() {
       Chapter t;
       t= new Chapter("Intro", 1, null);
       assertEquals("Intro", t.getTitle());
       assertEquals( 2,  t.getNumber());
    }
    
    public void testSecondConstructor() {
         
    }
    
    public void testSetterMethods() {
        
    }
    
    public void testOthers() {
       
        
    }
    
    
    
}
