aboutsummaryrefslogtreecommitdiffstats
path: root/it/it-projects/testing/xoo-sample-new-coverage-v2/src/main/xoo/sample/Sample.xoo
blob: 41871e123a3f941bb6755ba5eca2c22e7124de84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package sample;

public class Sample {
	
	public Sample(int i) {
		int j = i++;
	}
	
	private String myMethod() {
		if (foo == bar) {
			return "hello";
		} else {
			throw new IllegalStateException();
		}
	}
}