View Javadoc
1 package jrre.unittests; 2 3 import junit.framework.*; 4 import jrre.*; 5 import jrre.instructionset.*; 6 import jrre.types.*; 7 import jrre.unittests.datastructures.*; 8 9 import java.io.*; 10 11 public class StringTest extends TestCase { 12 13 public void testLinkedList(){ 14 15 System.out.println("\nS T A R T I N G S T R I N G M A N I P U L A T I O N T E S T:\n"); 16 17 JRRERunner runtime = new JRRERunner(); 18 19 // Load class containing factorial method. 20 runtime.loadClass("target/test-classes/jrre/unittests/datastructures/StringManipulations"); 21 22 PrimitiveType result = (PrimitiveType) runtime.callMethod("buildString()V", null); 23 24 } 25 }

This page was automatically generated by Maven