Package com.intellij.plugins.haxe.ide.projectStructure.detection

Examples of com.intellij.plugins.haxe.ide.projectStructure.detection.HaxeProjectStructureDetector


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:
View Full Code Here

TOP

Related Classes of com.intellij.plugins.haxe.ide.projectStructure.detection.HaxeProjectStructureDetector

Copyright © 2018 www.massapicom. 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.