blob: 765d88f4cd11d3d820503a6d599985dd5ac7d815 [file] [log] [blame]
package test.triangle;
/**
* count the number of times something is called
* used to check whether certain methods have been called
*/
public class CountCalls {
static int numCalls = 0;
public static void incr () {
numCalls++;
}
public static int getNumCalls() {
return numCalls;
}
}