You are viewing a plain text version of this content. The canonical link for it is here.
Posted to npanday-commits@incubator.apache.org by br...@apache.org on 2014/02/25 06:34:01 UTC

svn commit: r1571584 - in /incubator/npanday/npanday-its/trunk/src/test/resources/NPandayIT0036InstalledArtifactsVerificationTest/src/test/vb: Module1.vb folder/Module2.vb

Author: brett
Date: Tue Feb 25 06:34:01 2014
New Revision: 1571584

URL: http://svn.apache.org/r1571584
Log:
Update test classes

Appears that this doesn't work in NUnit 2.6 - switch to a class instead
of a module for the test classes

Modified:
    incubator/npanday/npanday-its/trunk/src/test/resources/NPandayIT0036InstalledArtifactsVerificationTest/src/test/vb/Module1.vb
    incubator/npanday/npanday-its/trunk/src/test/resources/NPandayIT0036InstalledArtifactsVerificationTest/src/test/vb/folder/Module2.vb

Modified: incubator/npanday/npanday-its/trunk/src/test/resources/NPandayIT0036InstalledArtifactsVerificationTest/src/test/vb/Module1.vb
URL: http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPandayIT0036InstalledArtifactsVerificationTest/src/test/vb/Module1.vb?rev=1571584&r1=1571583&r2=1571584&view=diff
==============================================================================
--- incubator/npanday/npanday-its/trunk/src/test/resources/NPandayIT0036InstalledArtifactsVerificationTest/src/test/vb/Module1.vb (original)
+++ incubator/npanday/npanday-its/trunk/src/test/resources/NPandayIT0036InstalledArtifactsVerificationTest/src/test/vb/Module1.vb Tue Feb 25 06:34:01 2014
@@ -18,7 +18,7 @@
 '-----------------------------------------------------------------------------------
 Imports NUnit.Framework
 <TestFixture()> _
-Module Module1
+Public Class Module1
 
     <Test()> _
     Sub Main()
@@ -26,4 +26,4 @@ Module Module1
 
     End Sub
 
-End Module
+End Class

Modified: incubator/npanday/npanday-its/trunk/src/test/resources/NPandayIT0036InstalledArtifactsVerificationTest/src/test/vb/folder/Module2.vb
URL: http://svn.apache.org/viewvc/incubator/npanday/npanday-its/trunk/src/test/resources/NPandayIT0036InstalledArtifactsVerificationTest/src/test/vb/folder/Module2.vb?rev=1571584&r1=1571583&r2=1571584&view=diff
==============================================================================
--- incubator/npanday/npanday-its/trunk/src/test/resources/NPandayIT0036InstalledArtifactsVerificationTest/src/test/vb/folder/Module2.vb (original)
+++ incubator/npanday/npanday-its/trunk/src/test/resources/NPandayIT0036InstalledArtifactsVerificationTest/src/test/vb/folder/Module2.vb Tue Feb 25 06:34:01 2014
@@ -18,7 +18,7 @@
 '-----------------------------------------------------------------------------------
 Imports NUnit.Framework
 <TestFixture()> _
-Module Module2
+Public Class Module2
 
     <Test()> _
     Sub Main()
@@ -26,4 +26,4 @@ Module Module2
 
     End Sub
 
-End Module
+End Class