You are viewing a plain text version of this content. The canonical link for it is here.
Posted to nmaven-commits@incubator.apache.org by br...@apache.org on 2008/09/23 07:05:39 UTC

svn commit: r698104 - in /incubator/nmaven/branches/NMAVEN-186/core-integration-tests: notes.txt src/test/java/org/apache/maven/dotnet/integrationtests/IntegrationTestSuite.java

Author: brett
Date: Tue Sep 23 00:05:39 2008
New Revision: 698104

URL: http://svn.apache.org/viewvc?rev=698104&view=rev
Log:
[NMAVEN-186] simplify suite and reorder notes

Modified:
    incubator/nmaven/branches/NMAVEN-186/core-integration-tests/notes.txt
    incubator/nmaven/branches/NMAVEN-186/core-integration-tests/src/test/java/org/apache/maven/dotnet/integrationtests/IntegrationTestSuite.java

Modified: incubator/nmaven/branches/NMAVEN-186/core-integration-tests/notes.txt
URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/NMAVEN-186/core-integration-tests/notes.txt?rev=698104&r1=698103&r2=698104&view=diff
==============================================================================
--- incubator/nmaven/branches/NMAVEN-186/core-integration-tests/notes.txt (original)
+++ incubator/nmaven/branches/NMAVEN-186/core-integration-tests/notes.txt Tue Sep 23 00:05:39 2008
@@ -1,22 +1,21 @@
 Planned changes:
 
-- Port 0.14 ITs: 02, 03, 04, 10, 20, 21, 22, 28, 29, 30, 32
-- Ensure test suite runs for 0.14 by translating POMs according to the formula below
 - Make it possible to run ITs on different versions of NMaven by substituting plugin version, like Maven ITs
+- Ensure test suite runs for 0.14 by translating POMs according to the formula below
+- review toolchain support (NMAVEN-147)
 - Make it possible to run the entire test suite with a given toolchain (previous tests only did so for IT0000 and it wasn't configurable)
+
+After merge to trunk:
+
 - Rename tests to have valid issue numbers of test descriptions rather than MNG-0000
 - Move tests to a separate trunk, independent of version
+- Port 0.14 ITs: 02, 03, 04, 10, 20, 21, 22, 28, 29, 30, 32
 - Use new ITs for 0.14
+- review NUnit issues / missing dependency (NMAVEN-8)
 - Remove old ITs except for: issue67, 05, 11 - 19
-- Port 0.14 ITs: 06, 07 - to XSD plugin once migrated
 - Port 0.14 ITs if relevant: 18 (1.1), 19 (Compact)
 - Add ITs: .NET 3.0
 
-Fixes:
-
-- review toolchain support (NMAVEN-147)
-- review NUnit issues / missing dependency (NMAVEN-8)
-
 Translating 0.16 to 0.14 and vice-versa
 
 To 0.14

Modified: incubator/nmaven/branches/NMAVEN-186/core-integration-tests/src/test/java/org/apache/maven/dotnet/integrationtests/IntegrationTestSuite.java
URL: http://svn.apache.org/viewvc/incubator/nmaven/branches/NMAVEN-186/core-integration-tests/src/test/java/org/apache/maven/dotnet/integrationtests/IntegrationTestSuite.java?rev=698104&r1=698103&r2=698104&view=diff
==============================================================================
--- incubator/nmaven/branches/NMAVEN-186/core-integration-tests/src/test/java/org/apache/maven/dotnet/integrationtests/IntegrationTestSuite.java (original)
+++ incubator/nmaven/branches/NMAVEN-186/core-integration-tests/src/test/java/org/apache/maven/dotnet/integrationtests/IntegrationTestSuite.java Tue Sep 23 00:05:39 2008
@@ -19,31 +19,14 @@
 package org.apache.maven.dotnet.integrationtests;
 
 import junit.framework.Test;
+import junit.framework.TestCase;
 import junit.framework.TestSuite;
 
-import org.apache.maven.integrationtests.AbstractMavenIntegrationTestCase;
-import org.apache.maven.it.VerificationException;
-import org.apache.maven.it.Verifier;
-
 public class IntegrationTestSuite
-    extends AbstractMavenIntegrationTestCase
+    extends TestCase
 {
     public static Test suite()
-        throws VerificationException
     {
-        Verifier verifier = null;
-        try
-        {
-            verifier = new Verifier( "" );
-        }
-        finally
-        {
-            if ( verifier != null )
-            {
-                verifier.resetStreams();
-            }
-        }
-
         TestSuite suite = new TestSuite();
         
         // NMAVEN-8
@@ -78,9 +61,4 @@
         suite.addTestSuite( MavenITmng0018CSharpSynchronizeTargetWithSource.class );
         return suite;
     }
-
-    protected static String getVendor()
-    {
-        return null;
-    }
 }