Mercurial > repos > IBBoard.WarFoundry.API.Tests
annotate MockObjects/MockSystemZipFile.cs @ 165:453640610ef9
Re #94: Loading files is too slow
* Add unit test to check loading time - we'll allow failure to be 10x slower
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Tue, 06 Sep 2011 20:28:17 +0100 |
parents | 8d9d49332d44 |
children |
rev | line source |
---|---|
11 | 1 // This file (MockSystemZipFile.cs) is a part of the IBBoard.WarFoundry.API.Tests project and is copyright 2008, 2009 IBBoard. |
0 | 2 // |
11 | 3 // 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. |
0 | 4 |
5 using System; | |
3
40b31dfd6a46
Update tests (one currently fails because of "end of stream" that doesn't occur when using factories normally)
IBBoard <dev@ibboard.co.uk>
parents:
0
diff
changeset
|
6 using System.IO; |
0 | 7 using ICSharpCode.SharpZipLib.Zip; |
8 | |
9 namespace IBBoard.WarFoundry.API | |
10 { | |
11 public class MockSystemZipFile : ZipFile | |
12 { | |
7
209c2e9b8b20
Re #44 - Fix WarFoundry API tests
IBBoard <dev@ibboard.co.uk>
parents:
4
diff
changeset
|
13 public MockSystemZipFile() : base("testdata/Warhammer5th.system") |
0 | 14 { |
15 } | |
16 } | |
17 } |