view AbstractEqualityTestTest.cs @ 6:57fdd2eb986b

* Add standardised .hgignore for C# projects
author IBBoard <dev@ibboard.co.uk>
date Sat, 24 Sep 2011 11:59:07 +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";
		}
	}
}