aboutsummaryrefslogtreecommitdiffstats
path: root/it/it-projects/shared/xoo-sample-with-tests/src/main/xoo/sample/Sample.xoo
diff options
context:
space:
mode:
Diffstat (limited to 'it/it-projects/shared/xoo-sample-with-tests/src/main/xoo/sample/Sample.xoo')
-rw-r--r--it/it-projects/shared/xoo-sample-with-tests/src/main/xoo/sample/Sample.xoo12
1 files changed, 12 insertions, 0 deletions
diff --git a/it/it-projects/shared/xoo-sample-with-tests/src/main/xoo/sample/Sample.xoo b/it/it-projects/shared/xoo-sample-with-tests/src/main/xoo/sample/Sample.xoo
new file mode 100644
index 00000000000..b1210973dd9
--- /dev/null
+++ b/it/it-projects/shared/xoo-sample-with-tests/src/main/xoo/sample/Sample.xoo
@@ -0,0 +1,12 @@
+package sample;
+
+public class Sample {
+
+ public Sample(int i) {
+ int j = i++;
+ }
+
+ private String myMethod() {
+ return "hello";
+ }
+}