view API/Commands/RemoveUnitCommandTest.cs @ 238:e173c5512067

* Update to v2.6 of NUnit and new syntax/API changes
author IBBoard <dev@ibboard.co.uk>
date Sun, 28 Apr 2013 19:32:38 +0100
parents d8cd6b259a9f
children
line wrap: on
line source

// This file (RemoveUnitCommandTest.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 NUnit.Framework;
using IBBoard.WarFoundry.API.Objects;
using IBBoard.WarFoundry.API.Objects.Mock;


namespace IBBoard.WarFoundry.API.Commands
{
	[TestFixture()]
	public class RemoveUnitCommandTest
	{
		private MockRace mockRace;
		private UnitType unitType1;
		private UnitType containedType;
		
		[TestFixtureSetUp()]
		public void SetupRace()
		{
			mockRace = new MockRace();
			unitType1 = new MockUnitType("type1", "Unit Type 1");
			mockRace.AddUnitType(unitType1);
			containedType = new MockContainedUnitType();
			unitType1.AddContainedUnitType(containedType);
			mockRace.AddUnitType(containedType);
		}

		[Test()]
		public void TestRemovingUnitWithContainedUnits()
		{
			Army army = new Army(mockRace, "Test", 1000);
			Unit unit1 = new Unit(unitType1, army.GetCategory(unitType1.MainCategory));
			army.AddUnit(unit1);
			Unit unit2 = new Unit(containedType, army.GetCategory(containedType.MainCategory));
			army.AddUnit(unit2);
			unit1.AddContainedUnit(unit2);
			Assert.That(army.GetUnits(), Has.Length.EqualTo(2));
			RemoveUnitCommand cmd = new RemoveUnitCommand(unit1);
			cmd.Execute();
			Assert.That(army.GetUnits(), Has.Length.EqualTo(0));
			cmd.Undo();			
			Assert.That(army.GetUnits(), Has.Length.EqualTo(2));
			cmd.Redo();
			Assert.That(army.GetUnits(), Has.Length.EqualTo(0));
		}
	}
}