comparison MockObjects/MockFactory.cs @ 3:40b31dfd6a46

Update tests (one currently fails because of "end of stream" that doesn't occur when using factories normally) no-open-ticket
author IBBoard <dev@ibboard.co.uk>
date Sun, 25 Jan 2009 13:54:18 +0000
parents faf976fe57df
children 4222cfa99c78
comparison
equal deleted inserted replaced
2:e1f8cb533bfa 3:40b31dfd6a46
42 42
43 protected override bool CheckCanFindSystemFileContent(ZipFile file) 43 protected override bool CheckCanFindSystemFileContent(ZipFile file)
44 { 44 {
45 return true; 45 return true;
46 } 46 }
47
48 public override void CompleteLoading (IWarFoundryStagedLoadObject obj)
49 {
50 //Do nothing
51 }
52 47
53 protected override Army CreateArmyFromStream (ZipFile file, Stream dataStream) 48 protected override Army CreateArmyFromStream (ZipFile file, Stream dataStream)
54 { 49 {
55 throw new NotImplementedException (); 50 throw new NotImplementedException ();
56 } 51 }