Mercurial > repos > IBBoard.WarFoundry.API.Tests
view API/AbstractWarFoundryLoaderTests.cs @ 110:788ef54f5b5a
Re #27: Define unit requirements
* Add last unit test to get more obvious behaviour equivalent to Rollcall's "-1" (can take unlimited X once one Y is taken)
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Tue, 29 Mar 2011 19:51:08 +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)); } } }