diff API/Loading/LoadableObjectSourceDirectoryTests.cs @ 228:7c21ca1482cb

Re #419: Remove assumptions of a file-based install * Update tests to use new "loadable object" and "loadable object source" wrappers
author IBBoard <dev@ibboard.co.uk>
date Sat, 07 Jul 2012 21:02:53 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/API/Loading/LoadableObjectSourceDirectoryTests.cs	Sat Jul 07 21:02:53 2012 +0100
@@ -0,0 +1,28 @@
+// This file (LoadableObjectSourceDirectoryTests.cs) is a part of the IBBoard.WarFoundry.API.Tests project and is copyright 2012 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 IBBoard.NUnit;
+using System.Reflection;
+
+namespace IBBoard.WarFoundry.API.Loading
+{
+	public class LoadableObjectSourceDirectoryTests : AbstractEqualityTest<LoadableObjectSourceDirectory>
+	{
+		public override LoadableObjectSourceDirectory GetObject()
+		{
+			return new LoadableObjectSourceDirectory("test");
+		}
+
+		public override LoadableObjectSourceDirectory GetSameObject()
+		{
+			return new LoadableObjectSourceDirectory("test");
+		}
+
+		public override LoadableObjectSourceDirectory GetDifferentObject()
+		{
+			return new LoadableObjectSourceDirectory("otherdir");
+		}
+	}
+}
+