Skip to content

Instantly share code, notes, and snippets.

View msakamoto-sf's full-sized avatar

Masahiko Sakamoto msakamoto-sf

View GitHub Profile
@msakamoto-sf
msakamoto-sf / Calc.java
Created November 11, 2012 07:47
Java + Groovy + TestNG + Maven combination example2
package gjt2;
public class Calc {
private int v1;
private int v2;
public Calc(int a, int b) {
v1 = a;
v2 = b;
}
public int calc() {