use of org.eclipse.linuxtools.internal.rpm.createrepo.form.tests.TestCreaterepoProject in project linuxtools by eclipse.
the class CreaterepoCommandCreatorTest method setUpBeforeClass.
/**
* Initialize the project.
*
* @throws Exception
*/
@BeforeClass
public static void setUpBeforeClass() throws Exception {
testProject = new TestCreaterepoProject();
assertTrue(testProject.getProject().exists());
}
use of org.eclipse.linuxtools.internal.rpm.createrepo.form.tests.TestCreaterepoProject in project linuxtools by eclipse.
the class CreaterepoTest method setUpBeforeClass.
/**
* Initialize the test project. Will fail immediately if it cannot find
* the createrepo command.
*
* @throws CoreException
*/
@BeforeClass
public static void setUpBeforeClass() throws CoreException {
Assume.assumeTrue(Createrepo.isCorrectVersion().isOK());
testProject = new TestCreaterepoProject();
assertTrue(testProject.getProject().exists());
}
Aggregations