test: added project setup test description and resources for Java Sonargraph setup

This commit is contained in:
mlangkabel
2018-08-28 15:01:13 +02:00
parent db23d50614
commit 03c06e91e8
14 changed files with 119 additions and 1 deletions
@@ -0,0 +1,10 @@
<?xml version="1.0" ?>
<ns2:softwareSystem xmlns:ns2="http://www.hello2morrow.com/sonargraph/core" id="141dcc4bc45fc37bdd45091f01737428" version="9.8.1.519">
<description></description>
<module xmlns:ns4="http://www.hello2morrow.com/sonargraph/languageprovider/java" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns4:xsdJavaModule" name="Test" id="64dda8e3e242dfafad66119061d4dd47" language="Java">
<description></description>
<rootPath name="./src"></rootPath>
<rootPath name="./target"></rootPath>
<rootPath xsi:type="ns4:xsdSourceRootPath" name="./src"></rootPath>
</module>
</ns2:softwareSystem>
@@ -0,0 +1,5 @@
package foo;
class Bar implements FooBar
{
}
@@ -0,0 +1,5 @@
package foo;
class Foo implements FooBar
{
}
@@ -0,0 +1,5 @@
package foo;
public interface FooBar
{
}
@@ -0,0 +1,8 @@
package foo;
public class Main
{
public Foo m_foo;
public Bar m_bar;
}