Examples of aggiungiSmell()


Examples of jmav.component.GestoreImpostazioni.aggiungiSmell()

  @Test
  public void testModificaSogliaIdSmellValidoAndIdSogliaValidaAndNuovoValoreNull() throws Exception {
    try
    {
      GestoreImpostazioni gestoreImpostazioni = new GestoreImpostazioni();
      gestoreImpostazioni.aggiungiSmell(GestoreImpostazioni.LargeClass);
      assertTrue(true);
      assertEquals(Integer.MAX_VALUE, gestoreImpostazioni.getSoglia(GestoreImpostazioni.LargeClass, 1).intValue());
      gestoreImpostazioni.modificaSoglia(GestoreImpostazioni.LargeClass, 1, null);
      assertTrue(false);
    } catch(ParameterNotNullException e) {
View Full Code Here

Examples of jmav.component.GestoreImpostazioni.aggiungiSmell()

  @Test
  public void testModificaSogliaIdSmellValidoAndIdSogliaValida() throws Exception {
    try
    {
      GestoreImpostazioni gestoreImpostazioni = new GestoreImpostazioni();
      gestoreImpostazioni.aggiungiSmell(GestoreImpostazioni.LargeClass);
      assertTrue(true);
      assertEquals(Integer.MAX_VALUE, gestoreImpostazioni.getSoglia(GestoreImpostazioni.LargeClass, 1).intValue());
      gestoreImpostazioni.modificaSoglia(GestoreImpostazioni.LargeClass, 1, 10);
      assertEquals(10, gestoreImpostazioni.getSoglia(GestoreImpostazioni.LargeClass, 1).intValue());
    } catch(ValueNotFoundException e) {
View Full Code Here
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.