Author: sisbell
Date: Thu Dec 13 02:55:44 2007
New Revision: 603880

URL: http://svn.apache.org/viewvc?rev=603880&view=rev
Log:
Missed an add on the unit tests.

Added:
    
incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/archetype-resources/src/test/
    
incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/archetype-resources/src/test/csharp/
    
incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/archetype-resources/src/test/csharp/Sample/
    
incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/archetype-resources/src/test/csharp/Sample/MyAppTest.cs

Added: 
incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/archetype-resources/src/test/csharp/Sample/MyAppTest.cs
URL: 
http://svn.apache.org/viewvc/incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/archetype-resources/src/test/csharp/Sample/MyAppTest.cs?rev=603880&view=auto
==============================================================================
--- 
incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/archetype-resources/src/test/csharp/Sample/MyAppTest.cs
 (added)
+++ 
incubator/nmaven/trunk/archetypes/maven-archetype-dotnet-simple/src/main/resources/archetype-resources/src/test/csharp/Sample/MyAppTest.cs
 Thu Dec 13 02:55:44 2007
@@ -0,0 +1,23 @@
+using System;
+using NUnit.Framework;
+
+namespace Sample
+{
+
+       [TestFixture]
+       public class MyAppTest
+       {
+
+               [SetUp]
+               protected void SetUp()
+               {
+               }
+
+               [Test]
+               public void TestSample()
+               {
+
+               }
+       }
+}
+


Reply via email to