Unit tests updated
This commit is contained in:
13
test/unit/classes/TestClassFields.java
Normal file
13
test/unit/classes/TestClassFields.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package unit.classes;
|
||||
|
||||
public class TestClassFields {
|
||||
|
||||
private static int[] sizes;
|
||||
private static String[] names;
|
||||
|
||||
static {
|
||||
|
||||
names = new String[]{"name1", "name2"};
|
||||
sizes = new int[names.length];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user