Ejemplo n.º 1
0
 public void testTextSplitAtFirstOfAny() throws Exception {
   String result =
       BlocklyTestUtils.generatorTest(
           testpath
               + "/tests/com/google/appinventor/generators_unit/textSplitAtFirstOfAnyTest.js");
   assertEquals("true", result.toString());
 }
Ejemplo n.º 2
0
 public void testControlsEvalButIgnore() throws Exception {
   String result =
       BlocklyTestUtils.generatorTest(
           testpath
               + "/tests/com/google/appinventor/generators_unit/controlsEvalButIgnoreTest.js");
   assertEquals("true", result.toString());
 }
Ejemplo n.º 3
0
 public void testListsSelectItem() throws Exception {
   String result =
       BlocklyTestUtils.generatorTest(
           testpath + "/tests/com/google/appinventor/generators_unit/listsSelectItemTest.js");
   assertEquals("true", result.toString());
 }