зеркало из https://github.com/mozilla/pluotsorbet.git
24 строки
601 B
Java
24 строки
601 B
Java
package java.lang;
|
|
|
|
import gnu.testlet.Testlet;
|
|
import gnu.testlet.TestHarness;
|
|
|
|
public class TestStaticInit implements Testlet {
|
|
public int getExpectedPass() { return 2; }
|
|
public int getExpectedFail() { return 0; }
|
|
public int getExpectedKnownFail() { return 0; }
|
|
static class TestClass {
|
|
static int value = 0;
|
|
}
|
|
|
|
static class TestClassB extends TestClass {
|
|
}
|
|
|
|
public void test(TestHarness th) {
|
|
TestClass.value = 1;
|
|
TestClassB newInstance = new TestClassB();
|
|
th.check(TestClass.value, 1);
|
|
th.check(TestClassB.value, 1);
|
|
}
|
|
}
|