Package net.fqsc.inscriptions.model.categories

Examples of net.fqsc.inscriptions.model.categories.Discipline


  }

  @Test(expected = UniqueException.class)
  public void testCreateDisciplineValidateUnique()
  {
    final Discipline discipline = new Discipline(this.utils.getDomainModel());
    discipline.setNom("XC");

    this.disciplineCtrl.createDiscipline(discipline);
  }
View Full Code Here


  }

  @Test
  public void testUpdateDiscipline()
  {
    final Discipline disciplineCopy = (Discipline) this.disciplineDh.copy();
    disciplineCopy.setNom("XUEE");

    this.disciplineCtrl.updateDiscipline(disciplineCopy);

    Assert.assertNotNull(this.disciplineCtrl.getByNom("XUEE"));
  }
View Full Code Here

TOP

Related Classes of net.fqsc.inscriptions.model.categories.Discipline

Copyright © 2018 www.massapicom. 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.