Created
August 10, 2012 14:08
-
-
Save heavenshell/3314442 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
package peropero; | |
public class Oraora { | |
public static void main(String[] args) { | |
} | |
public static String おらおら() { | |
return "(゜ロ゜)オラ(゜ロ゜)オラ(゜ロ゜)オラ(゜ロ゜)オラ(゜ロ゜)オラ(゜ロ゜)オラ(゜ロ゜)オラ(゜ロ゜)オラ"; | |
} | |
} |
This file contains hidden or 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
import static org.junit.Assert.*; | |
import static org.hamcrest.core.Is.is; | |
import org.junit.Test; | |
import peropero.Oraora; | |
public class OraoraTest { | |
@Test | |
public void test() { | |
assertThat(Oraora.おらおら(), is("(゜ロ゜)オラ(゜ロ゜)オラ(゜ロ゜)オラ(゜ロ゜)オラ(゜ロ゜)オラ(゜ロ゜)オラ(゜ロ゜)オラ(゜ロ゜)オラ")); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment