Test angefügt

This commit is contained in:
JanUlrich 2014-04-28 07:40:49 +02:00
parent 2511d95a9f
commit 1a655943ed
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,13 @@
class Recursive{
var = "test";
methode1(a){
return methode2(a);
}
String methode2(b){
return methode1(var);
}
}

View File

@ -0,0 +1,18 @@
package plugindevelopment.TypeInsertTests;
import java.util.Vector;
import org.junit.Test;
public class ReursiveTest {
private static final String TEST_FILE = "Recursive.jav";
@Test
public void run(){
Vector<String> mustContain = new Vector<String>();
//mustContain.add("A a");
MultipleTypesInsertTester.test(this.TEST_FILE, mustContain);
}
}