Mercurial > repos > IBDev-IBBoard.WarFoundry.API.Tests
view API/AbstractWarFoundryLoaderTests.cs @ 184:00ea622313be
Re #366: Rewrite equipment handling and limits
* Add test for numeric amounts to make sure that they're not affected either
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 12 Nov 2011 20:49:11 +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)); } } }