assertEquals(0, markers.length);
}
public void testLaunchingTestCase() throws CoreException, OperationCanceledException, InterruptedException, MalformedURLException, IOException{
testProject.addJar("org.jbehave", "lib/jbehave.jar");
IWorkspaceRunnable runnable=new IWorkspaceRunnable(){
public void run(IProgressMonitor monitor) throws CoreException {
IPackageFragment pack = testProject.createPackage("paket1") ;
IType type= testProject.createType(pack, "AClass.java", "public class AClass {public void m(){}}");
IType testClass = testProject.createType(pack, "AClassBehaviour.java", "public class AClassBehaviour extends org.jbehave.core.mock.UsingMatchers{public void shouldAddUp(){ensureThat(2,eq(1+1));}}");
}