public void testNOPAR_5() throws Exception {
Posizione posizione = UtilTest.getMetodo(MethodWithVaradicParWith1Par);
assertNotNull(posizione);
System.out.println("\n\nposizione: "+posizione.getNode());
CalcolatoreMetriche calcolatoreMetriche = new CalcolatoreMetriche();
Double numberOfParameters = calcolatoreMetriche.calcolaMatrica(Metrica.NOPAR, posizione);
System.out.println("numberOfParameters: "+numberOfParameters);
assertEquals(numberOfParameters, 2.0);
}