Exemplo n.º 1
0
 public void TestUnderscore()
 {
     Assert.Equal("TRNT", Acronimo.Abbrevia("The Road _Not_ Taken"));
 }
Exemplo n.º 2
0
 public void TestBase()
 {
     Assert.Equal("PNG", Acronimo.Abbrevia("Portable Network Graphics"));
 }
Exemplo n.º 3
0
 public void TestDelimitatori()
 {
     Assert.Equal("SIMUFTA", Acronimo.Abbrevia("Something - I made up from thin air"));
 }
Exemplo n.º 4
0
 public void TestApostrofi()
 {
     Assert.Equal("HC", Acronimo.Abbrevia("Halley's Comet"));
 }
Exemplo n.º 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"));
 }
Exemplo n.º 6
0
 public void TestWhiteSpace()
 {
     Assert.Equal("CMOS", Acronimo.Abbrevia("Complementary metal-oxide semiconductor"));
 }
Exemplo n.º 7
0
 public void TestMaiuscole()
 {
     Assert.Equal("GIMP", Acronimo.Abbrevia("GNU Image Manipulation Program"));
 }
Exemplo n.º 8
0
 public void TestVirgole()
 {
     Assert.Equal("FIFO", Acronimo.Abbrevia("First In, First Out"));
 }
Exemplo n.º 9
0
 public void TestMinuscole()
 {
     Assert.Equal("ROR", Acronimo.Abbrevia("Ruby on Rails"));
 }