Package org.eclipse.contribution.junit.javadoc.test

Examples of org.eclipse.contribution.junit.javadoc.test.TestProject.addJar()


public final class CreateTestProjectUtil {
 
  public static TestProject createTestProject() throws CoreException, MalformedURLException, IOException{
    final TestProject project = new TestProject();
    project.addJar("org.junit", "junit.jar");
    return project;
  }
 
  public static IPackageFragment createPackageFragment(final TestProject project, final String packageName) throws CoreException{
    IPackageFragment created = project.createPackage(packageName);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.