/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
- // Copyright Jens Granlund 2012.
- // Distributed under the New BSD License.
- // (See accompanying file notice.txt or at
- // http://www.opensource.org/licenses/bsd-license.php)
- namespace CleanZip.Test.Mock1
- {
- public class Archive : IArchive
- {
- public void Dispose()
- {
- Close();
- }
- public bool ArchiveClosed { get; private set; }
- public int FilesCount { get; private set; }
- public void Add(IFile file)
- {
- FilesCount++;
- }
- public void Close()
- {
- ArchiveClosed = true;
- }
- }
- }