示例#1
0
 @Test
 public void testUpdate() throws Exception {
   AcademicYear a = new AcademicYear.Builder("211003344").build();
   Assert.assertEquals(a.getAcademicID(), "211003344");
 }
示例#2
0
  // TODO add test methods here.
  // The methods must be annotated with annotation @Test. For example:
  //
  @Test
  public void testCreation() throws Exception {

    AcademicYear a = new AcademicYear.Builder("210130067").build();
    Assert.assertEquals(a.getAcademicID(), "210130067");
  }