diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2018-06-18 10:55:55 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-06-21 20:21:30 +0200 |
commit | 2b14abe26e05418cb9bfe6a2ec12aad8b7f1bee7 (patch) | |
tree | 55105175deedd9bf3cedd626f96fec5b44e6705e /tests/projects/measureHistory/xoo-multi-files-sample | |
parent | 7a1963f09d9ff9fb917c7c79f87e23b9a5473ab1 (diff) | |
download | sonarqube-2b14abe26e05418cb9bfe6a2ec12aad8b7f1bee7.tar.gz sonarqube-2b14abe26e05418cb9bfe6a2ec12aad8b7f1bee7.zip |
move ITs code to private directory
Diffstat (limited to 'tests/projects/measureHistory/xoo-multi-files-sample')
9 files changed, 0 insertions, 77 deletions
diff --git a/tests/projects/measureHistory/xoo-multi-files-sample/sonar-project.properties b/tests/projects/measureHistory/xoo-multi-files-sample/sonar-project.properties deleted file mode 100644 index 59af7dfeaca..00000000000 --- a/tests/projects/measureHistory/xoo-multi-files-sample/sonar-project.properties +++ /dev/null @@ -1,9 +0,0 @@ -# Root project information -sonar.projectKey=multi-files-sample -sonar.projectName=Sonar :: Integration Tests :: Multi-files Sample -sonar.projectVersion=1.0-SNAPSHOT - -sonar.language=xoo - -# Some properties that will be inherited by the modules -sonar.sources=src/main/xoo diff --git a/tests/projects/measureHistory/xoo-multi-files-sample/src/main/xoo/sample/File1.xoo b/tests/projects/measureHistory/xoo-multi-files-sample/src/main/xoo/sample/File1.xoo deleted file mode 100644 index 74d29a4fa08..00000000000 --- a/tests/projects/measureHistory/xoo-multi-files-sample/src/main/xoo/sample/File1.xoo +++ /dev/null @@ -1,16 +0,0 @@ -package com.sonar.it.samples.modules.a1; - -public class HelloA1 { - private int i; - private HelloA1() { - - } - - public void hello() { - System.out.println("hello" + " xoo"); - } - - protected String getHello() { - return "hello"; - } -}
\ No newline at end of file diff --git a/tests/projects/measureHistory/xoo-multi-files-sample/src/main/xoo/sample/File1.xoo.measures b/tests/projects/measureHistory/xoo-multi-files-sample/src/main/xoo/sample/File1.xoo.measures deleted file mode 100644 index 7812e4167fb..00000000000 --- a/tests/projects/measureHistory/xoo-multi-files-sample/src/main/xoo/sample/File1.xoo.measures +++ /dev/null @@ -1,2 +0,0 @@ -ncloc:12 -classes:1 diff --git a/tests/projects/measureHistory/xoo-multi-files-sample/src/main/xoo/sample/File2.xoo b/tests/projects/measureHistory/xoo-multi-files-sample/src/main/xoo/sample/File2.xoo deleted file mode 100644 index 796d90cfad5..00000000000 --- a/tests/projects/measureHistory/xoo-multi-files-sample/src/main/xoo/sample/File2.xoo +++ /dev/null @@ -1,20 +0,0 @@ -package com.sonar.it.samples.modules.a2; - -public class HelloA2 { - - public HelloA2(int i) { - int j = i++; - } - - public void hello() { - System.out.println("hello" + " xoo"); - } - - private String myMethod() { - if (foo == bar) { - return "hello"; - } else { - throw new IllegalStateException(); - } - } -} diff --git a/tests/projects/measureHistory/xoo-multi-files-sample/src/main/xoo/sample/File2.xoo.measures b/tests/projects/measureHistory/xoo-multi-files-sample/src/main/xoo/sample/File2.xoo.measures deleted file mode 100644 index 63df5add6d4..00000000000 --- a/tests/projects/measureHistory/xoo-multi-files-sample/src/main/xoo/sample/File2.xoo.measures +++ /dev/null @@ -1,2 +0,0 @@ -ncloc:15 -classes:1 diff --git a/tests/projects/measureHistory/xoo-multi-files-sample/src/main/xoo/sample/File3.xoo b/tests/projects/measureHistory/xoo-multi-files-sample/src/main/xoo/sample/File3.xoo deleted file mode 100644 index b83c3af128c..00000000000 --- a/tests/projects/measureHistory/xoo-multi-files-sample/src/main/xoo/sample/File3.xoo +++ /dev/null @@ -1,12 +0,0 @@ -package com.sonar.it.samples.modules.b1; - -public class HelloB1 { - private int i; - private HelloB1() { - - } - - public void hello() { - System.out.println("hello" + " world"); - } -}
\ No newline at end of file diff --git a/tests/projects/measureHistory/xoo-multi-files-sample/src/main/xoo/sample/File3.xoo.measures b/tests/projects/measureHistory/xoo-multi-files-sample/src/main/xoo/sample/File3.xoo.measures deleted file mode 100644 index 3947d3bdbff..00000000000 --- a/tests/projects/measureHistory/xoo-multi-files-sample/src/main/xoo/sample/File3.xoo.measures +++ /dev/null @@ -1,2 +0,0 @@ -ncloc:12 -classes:1
\ No newline at end of file diff --git a/tests/projects/measureHistory/xoo-multi-files-sample/src/main/xoo/sample/File4.xoo b/tests/projects/measureHistory/xoo-multi-files-sample/src/main/xoo/sample/File4.xoo deleted file mode 100644 index 20b8bb3876a..00000000000 --- a/tests/projects/measureHistory/xoo-multi-files-sample/src/main/xoo/sample/File4.xoo +++ /dev/null @@ -1,12 +0,0 @@ -package com.sonar.it.samples.modules.b2; - -public class HelloB2 { - private int i; - private HelloB2() { - - } - - public void hello() { - System.out.println("hello" + " world"); - } -}
\ No newline at end of file diff --git a/tests/projects/measureHistory/xoo-multi-files-sample/src/main/xoo/sample/File4.xoo.measures b/tests/projects/measureHistory/xoo-multi-files-sample/src/main/xoo/sample/File4.xoo.measures deleted file mode 100644 index 3947d3bdbff..00000000000 --- a/tests/projects/measureHistory/xoo-multi-files-sample/src/main/xoo/sample/File4.xoo.measures +++ /dev/null @@ -1,2 +0,0 @@ -ncloc:12 -classes:1
\ No newline at end of file |