Exemple #1
0
 public void TestUnderscore()
 {
     Assert.Equal("TRNT", Acronimo.Abbrevia("The Road _Not_ Taken"));
 }
Exemple #2
0
 public void TestBase()
 {
     Assert.Equal("PNG", Acronimo.Abbrevia("Portable Network Graphics"));
 }
Exemple #3
0
 public void TestDelimitatori()
 {
     Assert.Equal("SIMUFTA", Acronimo.Abbrevia("Something - I made up from thin air"));
 }
Exemple #4
0
 public void TestApostrofi()
 {
     Assert.Equal("HC", Acronimo.Abbrevia("Halley's Comet"));
 }
Exemple #5
0
 public void TestLungo()
 {
     Assert.Equal("ROTFLSHTMDCOALM", Acronimo.Abbrevia("Rolling On The Floor Laughing So Hard That My Dogs Came Over And Licked Me"));
 }
Exemple #6
0
 public void TestWhiteSpace()
 {
     Assert.Equal("CMOS", Acronimo.Abbrevia("Complementary metal-oxide semiconductor"));
 }
Exemple #7
0
 public void TestMaiuscole()
 {
     Assert.Equal("GIMP", Acronimo.Abbrevia("GNU Image Manipulation Program"));
 }
Exemple #8
0
 public void TestVirgole()
 {
     Assert.Equal("FIFO", Acronimo.Abbrevia("First In, First Out"));
 }
Exemple #9
0
 public void TestMinuscole()
 {
     Assert.Equal("ROR", Acronimo.Abbrevia("Ruby on Rails"));
 }