@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) {