Examples of rimuoviSmell()


Examples of jmav.component.GestoreImpostazioni.rimuoviSmell()

  @Test
  public void testRimuoviIdSmellNull() throws Exception {
    try
    {
      GestoreImpostazioni gestoreImpostazioni = new GestoreImpostazioni();
      gestoreImpostazioni.rimuoviSmell(null);
      assertTrue(false);
    } catch(ParameterNotNullException e) {
      assertTrue(true);
    }
  }
View Full Code Here

Examples of jmav.component.GestoreImpostazioni.rimuoviSmell()

  @Test
  public void testRimuoviIdSmellNonValido() throws Exception {
    try
    {
      GestoreImpostazioni gestoreImpostazioni = new GestoreImpostazioni();
      gestoreImpostazioni.rimuoviSmell(4);
      assertTrue(false);
    } catch(ValueNotFoundException e) {
      assertTrue(true);
    }
  }
View Full Code Here

Examples of jmav.component.GestoreImpostazioni.rimuoviSmell()

      GestoreImpostazioni gestoreImpostazioni = new GestoreImpostazioni();
      gestoreImpostazioni.aggiungiSmell(GestoreImpostazioni.LargeClass);
      assertTrue(true);
      assertEquals(1, gestoreImpostazioni.listaSmell().size());
      assertEquals("LargeClass", gestoreImpostazioni.listaSmell().get(0).getName());
      gestoreImpostazioni.rimuoviSmell(GestoreImpostazioni.LargeClass);
      assertTrue(true);
      assertEquals(0, gestoreImpostazioni.listaSmell().size());
    } catch(ValueNotFoundException e) {
      assertTrue(false);
    }
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.