Skip to content

Instantly share code, notes, and snippets.

@siguremon
Created March 2, 2012 20:58
Show Gist options
  • Save siguremon/1961347 to your computer and use it in GitHub Desktop.
Save siguremon/1961347 to your computer and use it in GitHub Desktop.
テスト対象のサンプルクラス
package net.siguremon.sample.junit;
public class Calc {
public int sum(int x, int y) {
return x + y;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment