Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22814/DotNetMock
Modified Files:
Tag: RFE_1098585
Assertion.cs
Log Message:
Cleaned up headers and comments.
Index: Assertion.cs
===================================================================
RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/Assertion.cs,v
retrieving revision 1.5.4.2
retrieving revision 1.5.4.3
diff -C2 -d -r1.5.4.2 -r1.5.4.3
*** Assertion.cs 26 Jan 2005 01:24:34 -0000 1.5.4.2
--- Assertion.cs 26 Jan 2005 01:36:41 -0000 1.5.4.3
***************
*** 1,2 ****
--- 1,6 ----
+ #region License
+ // Copyright (c) 2004, 2005 Griffin Caprio & Choy Rim. All rights reserved.
+ #endregion
+ #region Imports
using System;
using System.Configuration;
***************
*** 4,16 ****
using System.Reflection;
using System.Runtime.Remoting;
using DotNetMock.Core;
using DotNetMock.TestFramework;
namespace DotNetMock
{
/// <summary>
! /// Assertion class used throughout the DotNetMock framework to encapsulate specific testing frameworks.
! /// NOTE: All exceptions will be caught, and rethrown as DotNetMock.AssertionException.
/// </summary>
public class Assertion
{
--- 8,28 ----
using System.Reflection;
using System.Runtime.Remoting;
+
using DotNetMock.Core;
using DotNetMock.TestFramework;
+ #endregion
namespace DotNetMock
{
/// <summary>
! /// Access point to underlying testing framework.
/// </summary>
+ /// <author>Griffin Caprio</author>
+ /// <author>Choy Rim</author>
+ /// <remarks>
+ /// Assertion class used throughout the DotNetMock framework to
+ /// encapsulate specific testing frameworks.
+ /// NOTE: All exceptions will be caught, and rethrown as DotNetMock.AssertionException.
+ /// </remarks>
public class Assertion
{
|