refactor: FieldForms.hx

This commit is contained in:
2020-11-13 13:55:32 -07:00
parent 8dfeed797a
commit 60a4b10ca7
4 changed files with 126 additions and 52 deletions

View File

@@ -20,4 +20,12 @@ class BasicTestCase extends Test {
function testFuncall() {
Assert.equals(7, BasicTestCase.funResult);
}
function testField() {
Assert.equals(5, new BasicTestCase().myField);
}
function testMethod() {
Assert.equals(5, new BasicTestCase().myMethod());
}
}