public void testNOPAR_1(Object... values) throws Exception {
Posizione posizione = UtilTest.getMetodo(MethodWith0Par);
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, 0.0);
}