refactor tests + add static class test
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package draylar.omegatest.config;
|
||||
|
||||
import draylar.omegaconfig.api.Config;
|
||||
|
||||
public class ClassConfigTest implements Config {
|
||||
|
||||
public TestClass[] testClass = {
|
||||
new TestClass()
|
||||
};
|
||||
|
||||
@Override
|
||||
public String getName() {
|
||||
return "class-config";
|
||||
}
|
||||
|
||||
public static class TestClass {
|
||||
public boolean a = true;
|
||||
public int b = 1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user