Example #1
0
 @Test
 public void createLiteralPosition() throws Exception {
   Expression<Vector> pos = f.createLiteralPosition(5, 5, 5, null);
   Statement stmt = f.createPrint(pos, null);
   runStatementFor(u, stmt, 0.1);
   Vector vec = new Vector(5, 5, 5);
   System.out.println("The above test should print" + vec);
 }