Browse Source

Renamed DependencyMetricsTest -> DependencyMetricsTestCase, so that it gets run.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272277 13f79535-47bb-0310-9956-ffa450edef68
master
adammurdoch 23 years ago
parent
commit
beed9501eb
2 changed files with 3 additions and 2 deletions
  1. +1
    -0
      proposal/myrmidon/build.xml
  2. +2
    -2
      proposal/myrmidon/src/test/org/apache/myrmidon/DependencyMetricsTestCase.java

+ 1
- 0
proposal/myrmidon/build.xml View File

@@ -680,6 +680,7 @@ Legal:
<fileset dir="${test.working.dir}/dist/bin/lib" includes="**/*.jar"/> <fileset dir="${test.working.dir}/dist/bin/lib" includes="**/*.jar"/>
<fileset dir="${test.working.dir}/dist/lib" includes="**/*.jar, **/*.atl"/> <fileset dir="${test.working.dir}/dist/lib" includes="**/*.jar, **/*.atl"/>
</classpath> </classpath>
<classpath refid="tools.class.path"/>
<classpath location="${test.classes}"/> <classpath location="${test.classes}"/>


<!-- Pass config to the tests --> <!-- Pass config to the tests -->


proposal/myrmidon/src/test/org/apache/myrmidon/DependencyMetricsTest.java → proposal/myrmidon/src/test/org/apache/myrmidon/DependencyMetricsTestCase.java View File

@@ -22,12 +22,12 @@ import junit.framework.TestCase;
* @author <a href="mailto:peter@apache.org">Peter Donald</a> * @author <a href="mailto:peter@apache.org">Peter Donald</a>
* @version $Revision$ $Date$ * @version $Revision$ $Date$
*/ */
public class DependencyMetricsTest
public class DependencyMetricsTestCase
extends TestCase extends TestCase
{ {
private JDepend m_jDepend; private JDepend m_jDepend;


public DependencyMetricsTest( final String name )
public DependencyMetricsTestCase( final String name )
{ {
super( name ); super( name );
} }

Loading…
Cancel
Save