Package com.github.C204_242_DJSMT.Assignment_2.tests

Source Code of com.github.C204_242_DJSMT.Assignment_2.tests.TeacherTest

package com.github.C204_242_DJSMT.Assignment_2.tests;

import junit.framework.Assert;
import org.junit.Test;
import com.github.C204_242_DJSMT.Assignment_2.Teacher;

public class TeacherTest {
 
  @Test
  public void creationTest1() {
    new Teacher("Name");
  }
 
  @Test(expected=IllegalArgumentException.class)
  public void creationTest2() {
    new Teacher("");
  }
 
  @Test(expected=IllegalArgumentException.class)
  public void creationTest3() {
    new Teacher(null);
  }
}
TOP

Related Classes of com.github.C204_242_DJSMT.Assignment_2.tests.TeacherTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.