view API/Factories/Mock/MockNativeWarFoundryFactory.cs @ 212:325943cb1db0

Re #379: Fix validation of requirements to check for unit * Create common base class for requirement testing with helper methods * Rework unit adding tests in UnitRequiresNoMoreThanNOfUnitTypeRequirementTest to new structure
author IBBoard <dev@ibboard.co.uk>
date Sun, 26 Feb 2012 15:20:48 +0000
parents 453640610ef9
children
line wrap: on
line source

// This file (MockNativeWarFoundryFactory.cs) is a part of the IBBoard.WarFoundry.API.Tests project and is copyright 2011 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 ICSharpCode.SharpZipLib.Zip;
using System.Collections.Generic;
using IBBoard.WarFoundry.API.Objects;
using System.IO;

namespace IBBoard.WarFoundry.API.Factories.Mock
{
	public class MockNativeWarFoundryFactory : AbstractNativeWarFoundryFactory
	{
		public MockNativeWarFoundryFactory()
		{
			//Do nothing special
		}

		protected override bool CheckCanFindSystemFileContent(ZipFile file)
		{
			return false;
		}

		protected override bool CheckCanFindRaceFileContent(ZipFile file)
		{
			return false;
		}

		protected override bool CheckCanFindArmyFileContent(ZipFile file)
		{
			return false;
		}

		protected override ICollection<ZipEntry> GetArmyZipEntries(ZipFile file)
		{
			return new List<ZipEntry>().AsReadOnly();
		}

		protected override Army CreateArmyFromStream(ZipFile file, Stream dataStream)
		{
			return null;
		}

		protected override ICollection<ZipEntry> GetRaceZipEntries(ZipFile file)
		{
			return new List<ZipEntry>().AsReadOnly();
		}

		protected override Race CreateRaceFromStream(ZipFile file, Stream dataStream)
		{
			return null;
		}

		protected override ICollection<ZipEntry> GetGameSystemZipEntries(ZipFile file)
		{
			return new List<ZipEntry>().AsReadOnly();
		}

		protected override GameSystem CreateGameSystemFromStream(ZipFile file, Stream dataStream)
		{
			return null;
		}
	}
}