@After
public void tearDown() throws Exception {
}
protected static void setUpProject() throws CoreException, IOException{
JavaProjectHelper helper = new JavaProjectHelper();
helper.createProject("TestTheBigVoid", "bin", null);
helper.addStandartSourceFolder(null);
helper.addPackage("thebigvoid", null);
helper.addSourceFile("thebigvoid", "Galaxy.java", getFileContent(DAForJavaPlugin.getDefault().openBundledFile("./data/thebigvoid/Galaxy.java")), null);
helper.addSourceFile("thebigvoid", "GasGiant.java", getFileContent(DAForJavaPlugin.getDefault().openBundledFile("./data/thebigvoid/GasGiant.java")), null);
helper.addSourceFile("thebigvoid", "ILawsOfTheUniverse.java", getFileContent(DAForJavaPlugin.getDefault().openBundledFile("./data/thebigvoid/ILawsOfTheUniverse.java")), null);
helper.addSourceFile("thebigvoid", "INonSolidObject.java", getFileContent(DAForJavaPlugin.getDefault().openBundledFile("./data/thebigvoid/INonSolidObject.java")), null);
helper.addSourceFile("thebigvoid", "Planet.java", getFileContent(DAForJavaPlugin.getDefault().openBundledFile("./data/thebigvoid/Planet.java")), null);
helper.addSourceFile("thebigvoid", "StellarObject.java", getFileContent(DAForJavaPlugin.getDefault().openBundledFile("./data/thebigvoid/StellarObject.java")), null);
helper.addSourceFile("thebigvoid", "Universe.java", getFileContent(DAForJavaPlugin.getDefault().openBundledFile("./data/thebigvoid/Universe.java")), null);
}