Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <properties>
            <property>
              <name>listener</name>
              <value>net.flexmojos.oss.test.ProgressListener</value>
            </property>
          </properties>
          <includes>
            <include>**/*TestDebug.java</include>
          </includes>
        </configuration>
      </plugin>

I guess I don't have to mention to rename the class back after you are finished and to revert the settings of the sur

Enable breakpoints in the test code

...