view API/AbstractWarFoundryLoaderTests.cs @ 140:2ae80631ec9c

* Remove duplicate equality test code now that Mike Krueger fixed MonoDevelop bug 677228 (https://bugzilla.novell.com/show_bug.cgi?id=677228#c5) no-open-ticket
author IBBoard <dev@ibboard.co.uk>
date Thu, 28 Apr 2011 13:36:16 +0000
parents 4211c818ef96
children 7c21ca1482cb
line wrap: on
line source

using System;
using NUnit.Framework;
using IBBoard.WarFoundry.MockObjects;
using System.Collections.Generic;
using NUnit.Framework.SyntaxHelpers;
using System.IO;

namespace IBBoard.WarFoundry.API
{
	[TestFixture()]
	public class AbstractWarFoundryLoaderTests
	{
		[Test()]
		public void TestTriesToLoadFromSubdir()
		{
			MockWarFoundryLoader loader = new MockWarFoundryLoader();
			loader.AddLoadDirectory(new DirectoryInfo("testdata/subdir-loading-test"));
			List<FileLoadFailure> failures = loader.LoadFiles ();
			Assert.That(failures.Count, Is.EqualTo(2));
		}
	}
}