NUnit.Framework.Assert.IsEmpty(System.Collections.ICollection, string, params object[])

Here are the examples of the csharp api class NUnit.Framework.Assert.IsEmpty(System.Collections.ICollection, string, params object[]) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

4 Examples 7

1. Example

Project: 32feet
Source File: Assert.cs
public static void IsEmpty( ICollection collection, string message )
		{
			IsEmpty( collection, message, null );
		}

2. Example

Project: 32feet
Source File: Assert.cs
public static void IsEmpty( ICollection collection )
		{
			IsEmpty( collection, string.Empty, null );
		}

3. Example

Project: 32feet
Source File: Assert.cs
public static void IsEmpty( ICollection collection, string message )
		{
			IsEmpty( collection, message, null );
		}

4. Example

Project: 32feet
Source File: Assert.cs
public static void IsEmpty( ICollection collection )
		{
			IsEmpty( collection, string.Empty, null );
		}