Example #1
0
 @Test
 public void testRecordApply() throws Exception {
   Ascli.main(
       new String[] {
         "-h",
         HOST,
         "-p",
         "3000",
         "udf-record-apply",
         "test",
         "test",
         "Peter001",
         "simple",
         "printRecord"
       });
 }
Example #2
0
 @Test
 public void testUdfRemove() throws Exception {
   Ascli.main(new String[] {"-h", HOST, "-p", "3000", "udf-remove", "simple.lua"});
 }
Example #3
0
 @Test
 public void testUdfList() throws Exception {
   Ascli.main(new String[] {"-h", HOST, "-p", "3000", "udf-list"});
 }
Example #4
0
 @Test
 public void testUdfPut() throws Exception {
   Ascli.main(new String[] {"-h", HOST, "-p", "3000", "udf-put", "src/test/resources/simple.lua"});
 }