Skip to content

Instantly share code, notes, and snippets.

@yuroyoro
Created December 4, 2009 17:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuroyoro/249161 to your computer and use it in GitHub Desktop.
Save yuroyoro/249161 to your computer and use it in GitHub Desktop.
import static org.hamcrest.CoreMatchers.*;
import static org.junit.Assert.*;
import org.junit.Test;
public class JpTest {
@Test
public void asciiMethodNameTest(){
assertThat(true, is( true));
}
@Test
public void 日本語メソッドのテスト(){
assertThat(true, is( true));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment