public class HaxeSourceRootDetectionTest extends PlatformTestCase {
private void doTest(String... expected) {
final String dirPath = FileUtil.toSystemDependentName(HaxeTestUtils.BASE_TEST_DATA_PATH + "/rootDetection/") + getTestName(true);
final File dir = new File(dirPath);
assertTrue(dir.isDirectory());
final HaxeProjectStructureDetector haxeProjectStructureDetector = new HaxeProjectStructureDetector();
final ProjectStructureDetector[] detector = new ProjectStructureDetector[]{haxeProjectStructureDetector};
final RootDetectionProcessor detectionProcessor = new RootDetectionProcessor(
dir,detector
);
// TODO: