Skip to content

Instantly share code, notes, and snippets.

@rummelonp
Created November 12, 2011 02:09
Show Gist options
  • Save rummelonp/1359904 to your computer and use it in GitHub Desktop.
Save rummelonp/1359904 to your computer and use it in GitHub Desktop.
JUnitでAssertを使わずSystem.out.printlnするひとに警告する
System.setOut(new PrintStream(new ByteArrayOutputStream()) {
@Override
public void println(String x) {
throw new RuntimeException("Assert使え(#゚Д゚)ゴルァ!!");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment