adding the new files is important
[mono.git] / mcs / nunit20 / framework / NormalTestCase.cs
index 51b70e21d72513bd59807407e1023c37980f4792..b9fdf726e14ca49f2c43cc779c7631e78c7570b7 100755 (executable)
@@ -1,8 +1,8 @@
-#region Copyright (c) 2002, James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Philip A. Craig
+#region Copyright (c) 2002-2003, James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole, Philip A. Craig
 /************************************************************************************
 '
-' Copyright © 2002 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov
-' Copyright © 2000-2002 Philip A. Craig
+' Copyright © 2002-2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
+' Copyright © 2000-2003 Philip A. Craig
 '
 ' This software is provided 'as-is', without any express or implied warranty. In no 
 ' event will the authors be held liable for any damages arising from the use of this 
@@ -16,8 +16,8 @@
 ' you wrote the original software. If you use this software in a product, an 
 ' acknowledgment (see the following) in the product documentation is required.
 '
-' Portions Copyright © 2002 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov 
-' or Copyright © 2000-2002 Philip A. Craig
+' Portions Copyright © 2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
+' or Copyright © 2000-2003 Philip A. Craig
 '
 ' 2. Altered source versions must be plainly marked as such, and must not be 
 ' misrepresented as being the original software.
@@ -47,15 +47,7 @@ namespace NUnit.Core
                
                protected internal override void ProcessException(Exception exception, TestCaseResult testResult)
                {
-                       if(exception is NUnit.Framework.AssertionException)
-                       {
-                               NUnit.Framework.AssertionException error = (NUnit.Framework.AssertionException)exception;
-                               testResult.Failure(error.Message, error.StackTrace);
-                       }
-                       else
-                       {
-                               testResult.Failure(exception.Message, exception.StackTrace);
-                       }
+                       RecordException( exception, testResult );
                }
        }
 }