Examples of modificaSoglia()


Examples of jmav.component.GestoreImpostazioni.modificaSoglia()

           
            GestoreImpostazioni gestoreImpostazioni = new GestoreImpostazioni();
           
            if(store.getBoolean("BV_LARGE_CLASS")) {
              gestoreImpostazioni.aggiungiSmell(GestoreImpostazioni.LargeClass);
              gestoreImpostazioni.modificaSoglia(GestoreImpostazioni.LargeClass, 1, store.getInt("SG_LARGE_CLASS"));
            }
            if(store.getBoolean("BV_LONG_PAR_LIST")) {
              gestoreImpostazioni.aggiungiSmell(GestoreImpostazioni.LongParameterList);
              gestoreImpostazioni.modificaSoglia(GestoreImpostazioni.LongParameterList, 1, store.getInt("SG_LONG_PAR_LIST"));
            }
View Full Code Here

Examples of jmav.component.GestoreImpostazioni.modificaSoglia()

              gestoreImpostazioni.aggiungiSmell(GestoreImpostazioni.LargeClass);
              gestoreImpostazioni.modificaSoglia(GestoreImpostazioni.LargeClass, 1, store.getInt("SG_LARGE_CLASS"));
            }
            if(store.getBoolean("BV_LONG_PAR_LIST")) {
              gestoreImpostazioni.aggiungiSmell(GestoreImpostazioni.LongParameterList);
              gestoreImpostazioni.modificaSoglia(GestoreImpostazioni.LongParameterList, 1, store.getInt("SG_LONG_PAR_LIST"));
            }
            if(store.getBoolean("BV_LONG_METHOD")) {
              gestoreImpostazioni.aggiungiSmell(GestoreImpostazioni.LongMethod);
              gestoreImpostazioni.modificaSoglia(GestoreImpostazioni.LongMethod, 1, store.getInt("SG_LONG_METHOD"));
            }
View Full Code Here

Examples of jmav.component.GestoreImpostazioni.modificaSoglia()

              gestoreImpostazioni.aggiungiSmell(GestoreImpostazioni.LongParameterList);
              gestoreImpostazioni.modificaSoglia(GestoreImpostazioni.LongParameterList, 1, store.getInt("SG_LONG_PAR_LIST"));
            }
            if(store.getBoolean("BV_LONG_METHOD")) {
              gestoreImpostazioni.aggiungiSmell(GestoreImpostazioni.LongMethod);
              gestoreImpostazioni.modificaSoglia(GestoreImpostazioni.LongMethod, 1, store.getInt("SG_LONG_METHOD"));
            }
           
            CalcolatoreMetriche calcolatoreMetriche = new CalcolatoreMetriche();
           
            final GestoreAnalisi jmav_GestoreAnalisi = new GestoreAnalisi(gestoreImpostazioni, calcolatoreMetriche);
View Full Code Here

Examples of jmav.component.GestoreImpostazioni.modificaSoglia()

      String projectpath = "../test-artefatto";
      JavaProject project = new JavaProject(projectpath);
     
      GestoreImpostazioni gestoreImpostazioni = new GestoreImpostazioni();
      gestoreImpostazioni.aggiungiSmell(GestoreImpostazioni.LargeClass);
      gestoreImpostazioni.modificaSoglia(GestoreImpostazioni.LargeClass, 1, 50);
     
      CalcolatoreMetriche calcolatoreMetriche = new CalcolatoreMetriche();
     
      GestoreAnalisi gestoreAnalisi = new GestoreAnalisi(gestoreImpostazioni, calcolatoreMetriche);
      gestoreAnalisi.avviaAnalisi(project);
View Full Code Here

Examples of jmav.component.GestoreImpostazioni.modificaSoglia()

      String projectpath = "../test-artefatto";
      JavaProject project = new JavaProject(projectpath);
     
      GestoreImpostazioni gestoreImpostazioni = new GestoreImpostazioni();
      gestoreImpostazioni.aggiungiSmell(GestoreImpostazioni.LargeClass);
      gestoreImpostazioni.modificaSoglia(GestoreImpostazioni.LargeClass, 1, 50);
     
      CalcolatoreMetriche calcolatoreMetriche = new CalcolatoreMetriche();
     
      GestoreAnalisi gestoreAnalisi = new GestoreAnalisi(gestoreImpostazioni, calcolatoreMetriche);
      gestoreAnalisi.avviaAnalisi(project);
View Full Code Here

Examples of jmav.component.GestoreImpostazioni.modificaSoglia()

      String projectpath = "../test-artefatto";
      JavaProject project = new JavaProject(projectpath);
     
      GestoreImpostazioni gestoreImpostazioni = new GestoreImpostazioni();
      gestoreImpostazioni.aggiungiSmell(GestoreImpostazioni.LargeClass);
      gestoreImpostazioni.modificaSoglia(GestoreImpostazioni.LargeClass, 1, 50);
     
      CalcolatoreMetriche calcolatoreMetriche = new CalcolatoreMetriche();
     
      GestoreAnalisi gestoreAnalisi = new GestoreAnalisi(gestoreImpostazioni, calcolatoreMetriche);
      assertEquals(false, gestoreAnalisi.controllaAnalisiCorrente());
View Full Code Here

Examples of jmav.component.GestoreImpostazioni.modificaSoglia()

      String projectpath = "../test-artefatto";
      JavaProject project = new JavaProject(projectpath);
     
      GestoreImpostazioni gestoreImpostazioni = new GestoreImpostazioni();
      gestoreImpostazioni.aggiungiSmell(GestoreImpostazioni.LargeClass);
      gestoreImpostazioni.modificaSoglia(GestoreImpostazioni.LargeClass, 1, 50);
     
      CalcolatoreMetriche calcolatoreMetriche = new CalcolatoreMetriche();
     
      GestoreAnalisi gestoreAnalisi = new GestoreAnalisi(gestoreImpostazioni, calcolatoreMetriche);
      gestoreAnalisi.avviaAnalisi(project);
View Full Code Here

Examples of jmav.component.GestoreImpostazioni.modificaSoglia()

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

Examples of jmav.component.GestoreImpostazioni.modificaSoglia()

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

Examples of jmav.component.GestoreImpostazioni.modificaSoglia()

    try
    {
      GestoreImpostazioni gestoreImpostazioni = new GestoreImpostazioni();
      gestoreImpostazioni.aggiungiSmell(GestoreImpostazioni.LargeClass);
      assertEquals(Integer.MAX_VALUE, gestoreImpostazioni.getSoglia(GestoreImpostazioni.LargeClass, 1).intValue());
      gestoreImpostazioni.modificaSoglia(GestoreImpostazioni.LargeClass, null, 10);
      assertTrue(false);
    } catch(ParameterNotNullException e) {
      assertTrue(true);
    }
  }
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.