view MockObjects/MockSystemZipFile.cs @ 4:4222cfa99c78

Re #1 - LGPL license all code * Add LGPL header to all files * Add COPYING.LGPL and COPYING.GPL with content of license
author IBBoard <dev@ibboard.co.uk>
date Sun, 25 Jan 2009 14:51:41 +0000
parents 40b31dfd6a46
children 209c2e9b8b20
line wrap: on
line source

// This file (MockSystemZipFile.cs) is a part of the IBBoard.WarFoundry.API.Tests project and is copyright 2009 IBBoard.
//
// The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license.

using System;
using System.IO;
using ICSharpCode.SharpZipLib.Zip;

namespace IBBoard.WarFoundry.API
{
	public class MockSystemZipFile : ZipFile
	{
		public MockSystemZipFile() : base(new FileInfo("Test.system").OpenRead())
		{
		}
	}
}