view API/AbstractWarFoundryLoaderTests.cs @ 198:6a54d1787fbe

Re #350: Add requirement to allow N of unit for specific other units * Add big stack of test methods to test additive requirements with allowed values other than one * Add helper method to reduce repetition (used in new code, but not yet in old code)
author IBBoard <dev@ibboard.co.uk>
date Thu, 15 Dec 2011 21:00:37 +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));
		}
	}
}