Skip to content

Instantly share code, notes, and snippets.

@heavenshell
Created August 10, 2012 14:08
Show Gist options
  • Save heavenshell/3314442 to your computer and use it in GitHub Desktop.
Save heavenshell/3314442 to your computer and use it in GitHub Desktop.
package peropero;
public class Oraora {
public static void main(String[] args) {
}
public static String おらおら() {
return "(゜ロ゜)オラ(゜ロ゜)オラ(゜ロ゜)オラ(゜ロ゜)オラ(゜ロ゜)オラ(゜ロ゜)オラ(゜ロ゜)オラ(゜ロ゜)オラ";
}
}
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