Package com.google.jstestdriver.idea.util

Examples of com.google.jstestdriver.idea.util.TestFileScope


        runAllConfigsInDirectory = null;
      }
    }

    String testsScope = parameters.get(TestRunner.ParameterKey.TESTS);
    final TestFileScope testFileScope;
    if (testsScope == null) {
      testFileScope = TestFileScope.allScope();
    }
    else {
      testFileScope = TestFileScope.deserialize(testsScope);
View Full Code Here


    List<VirtualFile> jstdConfigs = JstdSettingsUtil.collectJstdConfigs(myEnvironment.getProject(), myRunSettings);
    if (jstdConfigs.isEmpty()) {
      throw new ExecutionException("Can't find JsTestDriver configuration file.");
    }
    parameters.put(TestRunner.ParameterKey.CONFIG_FILES, joinJstdConfigs(jstdConfigs));
    TestFileScope testFileScope = buildTestFileScope(myEnvironment.getProject(), myRunSettings);
    if (!testFileScope.isAll()) {
      parameters.put(TestRunner.ParameterKey.TESTS, testFileScope.serialize());
    }

    if (myCoverageFilePath != null) {
      parameters.put(TestRunner.ParameterKey.COVERAGE_OUTPUT_FILE, myCoverageFilePath);
      if (!myRunSettings.getFilesExcludedFromCoverage().isEmpty()) {
View Full Code Here

TOP

Related Classes of com.google.jstestdriver.idea.util.TestFileScope

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.