view AbstractEqualityTestTest.cs @ 7:c6dc68face9e default tip

* Update to v2.6 of NUnit and new syntax/API changes
author IBBoard <dev@ibboard.co.uk>
date Sun, 28 Apr 2013 19:32:03 +0100
parents efb6eef4a6ce
children
line wrap: on
line source

// This file (AbstractEqualityTestTest.cs) is a part of the IBBoard.NUnit.Tests project and is copyright 2011 IBBoard
// 
// The file and the library/program it is in are licensed and distributed, without warranty, under the GNU Affero GPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license.
using System;
using NUnit.Framework;
using IBBoard.NUnit;

namespace IBBoard.NUnit.Tests
{
	[TestFixture()]
	public class AbstractEqualityTestTest : AbstractEqualityTest<string>
	{
		public override string GetObject()
		{
			return "object";
		}

		public override string GetSameObject()
		{
			return "object";
		}

		public override string GetDifferentObject()
		{
			return "different";
		}

		public string GetOtherDifferentString()
		{
			return "fibble";
		}
	}
}