Skip to content

Commit

Permalink
Function for further tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mugli committed Oct 31, 2011
1 parent 773b02b commit 0958ece
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/com/omicronlab/avro/AvroTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ public void beforeTest() {
}

@Test
public void testAmiBanglayGanGai() {
String input = "ami banglay gan gai";
String output = avro.parse(input);
assertEquals("আমি বাংলায় গান গাই", output);
public void testSentances() {
//Goal: Test Sentence conversion
assertEquals("আমি বাংলায় গান গাই", avro.parse("ami banglay gan gai"));
assertEquals("আমাদের ভালোবাসা হয়ে গেল ঘাস, খেয়ে গেল গরু আর দিয়ে গেল বাঁশ", avro.parse("amader valObasa hoye gel ghas, kheye gel goru ar diye gelo ba^sh"));
}

@Test
Expand Down

0 comments on commit 0958ece

Please sign in to comment.