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,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;
}