diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2013-02-11 17:00:07 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2013-02-11 17:00:22 +0100 |
commit | 83d32715552731f58b44d4ef2195bc3493e15bfb (patch) | |
tree | 438c4e7d7464eb407d32a385368747fc25b17cad /sonar-batch/test-resources | |
parent | dc7eb3ff84273eb176e22f3c13b0e7c0ba560510 (diff) | |
download | sonarqube-83d32715552731f58b44d4ef2195bc3493e15bfb.tar.gz sonarqube-83d32715552731f58b44d4ef2195bc3493e15bfb.zip |
SONAR-1896 refactor file system components used during project analysis
Diffstat (limited to 'sonar-batch/test-resources')
7 files changed, 9 insertions, 0 deletions
diff --git a/sonar-batch/test-resources/DefaultModuleFileSystemTest/exclude_dir_starting_with_dot/src/org/.dirPrefixedWithDot/Excluded.java b/sonar-batch/test-resources/DefaultModuleFileSystemTest/exclude_dir_starting_with_dot/src/org/.dirPrefixedWithDot/Excluded.java new file mode 100644 index 00000000000..9578920820c --- /dev/null +++ b/sonar-batch/test-resources/DefaultModuleFileSystemTest/exclude_dir_starting_with_dot/src/org/.dirPrefixedWithDot/Excluded.java @@ -0,0 +1 @@ +public class Excluded2 {}
\ No newline at end of file diff --git a/sonar-batch/test-resources/DefaultModuleFileSystemTest/exclude_dir_starting_with_dot/src/org/.sonar/Excluded2.java b/sonar-batch/test-resources/DefaultModuleFileSystemTest/exclude_dir_starting_with_dot/src/org/.sonar/Excluded2.java new file mode 100644 index 00000000000..9578920820c --- /dev/null +++ b/sonar-batch/test-resources/DefaultModuleFileSystemTest/exclude_dir_starting_with_dot/src/org/.sonar/Excluded2.java @@ -0,0 +1 @@ +public class Excluded2 {}
\ No newline at end of file diff --git a/sonar-batch/test-resources/DefaultModuleFileSystemTest/exclude_dir_starting_with_dot/src/org/sonar/Included.java b/sonar-batch/test-resources/DefaultModuleFileSystemTest/exclude_dir_starting_with_dot/src/org/sonar/Included.java new file mode 100644 index 00000000000..78e1aabbba7 --- /dev/null +++ b/sonar-batch/test-resources/DefaultModuleFileSystemTest/exclude_dir_starting_with_dot/src/org/sonar/Included.java @@ -0,0 +1,3 @@ +package org.sonar; + +public class Included {}
\ No newline at end of file diff --git a/sonar-batch/test-resources/DefaultModuleFileSystemTest/main_and_test_files/src/main/java/Foo.java b/sonar-batch/test-resources/DefaultModuleFileSystemTest/main_and_test_files/src/main/java/Foo.java new file mode 100644 index 00000000000..f72abf33fa2 --- /dev/null +++ b/sonar-batch/test-resources/DefaultModuleFileSystemTest/main_and_test_files/src/main/java/Foo.java @@ -0,0 +1 @@ +class Foo {}
\ No newline at end of file diff --git a/sonar-batch/test-resources/DefaultModuleFileSystemTest/main_and_test_files/src/main/java/Hello.java b/sonar-batch/test-resources/DefaultModuleFileSystemTest/main_and_test_files/src/main/java/Hello.java new file mode 100644 index 00000000000..449be99af71 --- /dev/null +++ b/sonar-batch/test-resources/DefaultModuleFileSystemTest/main_and_test_files/src/main/java/Hello.java @@ -0,0 +1 @@ +public class Hello {}
\ No newline at end of file diff --git a/sonar-batch/test-resources/DefaultModuleFileSystemTest/main_and_test_files/src/test/java/FooTest.java b/sonar-batch/test-resources/DefaultModuleFileSystemTest/main_and_test_files/src/test/java/FooTest.java new file mode 100644 index 00000000000..31eebff6972 --- /dev/null +++ b/sonar-batch/test-resources/DefaultModuleFileSystemTest/main_and_test_files/src/test/java/FooTest.java @@ -0,0 +1 @@ +class FooTest {}
\ No newline at end of file diff --git a/sonar-batch/test-resources/DefaultModuleFileSystemTest/main_and_test_files/src/test/java/HelloTest.java b/sonar-batch/test-resources/DefaultModuleFileSystemTest/main_and_test_files/src/test/java/HelloTest.java new file mode 100644 index 00000000000..901b93a5cb4 --- /dev/null +++ b/sonar-batch/test-resources/DefaultModuleFileSystemTest/main_and_test_files/src/test/java/HelloTest.java @@ -0,0 +1 @@ +public class HelloTest {}
\ No newline at end of file |