Created
July 8, 2013 15:21
-
-
Save abshingate/5949777 to your computer and use it in GitHub Desktop.
AppTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void testStudentsPigScript() throws Exception { | |
PigTest pigTest = new PigTest("src/main/resources/wordcount.pig"); | |
pigTest.assertOutput("D", new String[] { "(2,No)", "(3,Ha!)", | |
"(1,Yes)", "(1,Open)", "(3,Papa)", "(1,your)", "(1,Johny)", | |
"(1,lies?)", "(1,Eating)", "(1,Johny!)", "(1,mouth!)", | |
"(1,sugar?)", "(1,Telling)", }); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment