コード例 #1
0
 public void testRunSingleMethodDisabledWhenDoNotHaveCoSImplicit() throws Exception {
   TestFileUtils.writeFile(
       new File(getWorkDir(), "pom.xml"),
       "<project><modelVersion>4.0.0</modelVersion>"
           + "<groupId>test</groupId><artifactId>prj</artifactId>"
           + "<version>1.0</version>"
           + "<build><plugins><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-surefire-plugin</artifactId><version>2.7</version></plugin></plugins></build>"
           + "<dependencies><dependency><groupId>junit</groupId><artifactId>junit</artifactId><version>4.8.2</version><scope>test</scope></dependency></dependencies>"
           + "</project>");
   assertSupportsRunSingleMethod(
       ProjectManager.getDefault().findProject(FileUtil.toFileObject(getWorkDir())), false);
 }
コード例 #2
0
 public void testRunSingleMethodEnabledForUnusualJUnitScope() throws Exception {
   TestFileUtils.writeFile(
       new File(getWorkDir(), "pom.xml"),
       "<project><modelVersion>4.0.0</modelVersion>"
           + "<groupId>test</groupId><artifactId>prj</artifactId>"
           + "<version>1.0</version>"
           + "<build><plugins><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-surefire-plugin</artifactId><version>2.8</version></plugin></plugins></build>"
           + "<dependencies><dependency><groupId>junit</groupId><artifactId>junit</artifactId><version>4.8.2</version></dependency></dependencies>"
           + "<properties><netbeans.compile.on.save>none</netbeans.compile.on.save></properties>"
           + "</project>");
   assertSupportsRunSingleMethod(
       ProjectManager.getDefault().findProject(FileUtil.toFileObject(getWorkDir())), true);
 }