/src/CleanZip.Test/Mock1/Archive.cs

https://bitbucket.org/jens13/cleanzip · C# · 29 lines · 20 code · 5 blank · 4 comment · 0 complexity · 30179d092cb77fa31036cbfa687a6000 MD5 · raw file

  1. // Copyright Jens Granlund 2012.
  2. // Distributed under the New BSD License.
  3. // (See accompanying file notice.txt or at
  4. // http://www.opensource.org/licenses/bsd-license.php)
  5. namespace CleanZip.Test.Mock1
  6. {
  7. public class Archive : IArchive
  8. {
  9. public void Dispose()
  10. {
  11. Close();
  12. }
  13. public bool ArchiveClosed { get; private set; }
  14. public int FilesCount { get; private set; }
  15. public void Add(IFile file)
  16. {
  17. FilesCount++;
  18. }
  19. public void Close()
  20. {
  21. ArchiveClosed = true;
  22. }
  23. }
  24. }