public void Resistenza4K7()
 {
     Assert.Equal( 
         4700, 
         CodiceColoreResistenze.Valore( 
             new[] { "giallo", "viola", "rosso" } 
         )
     );
 }
 public void Resistenza180K()
 {
     Assert.Equal( 
         180000, 
         CodiceColoreResistenze.Valore( 
             new[] { "marrone", "grigio", "giallo" } 
         )
     );
 }
 public void Resistenza1K()
 {
     Assert.Equal( 
         1000, 
         CodiceColoreResistenze.Valore( 
             new[] { "marrone", "nero", "rosso" } 
         )
     );
 }