Index: test/Common/DelftTools.Utils.Tests/IO/ZipFileTest.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -rb1728d26142119f9e21c35acb4c390fdae8abcac --- test/Common/DelftTools.Utils.Tests/IO/ZipFileTest.cs (.../ZipFileTest.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ test/Common/DelftTools.Utils.Tests/IO/ZipFileTest.cs (.../ZipFileTest.cs) (revision b1728d26142119f9e21c35acb4c390fdae8abcac) @@ -10,15 +10,15 @@ [TestFixture] public class ZipFileTest { - [Test,Category(TestCategory.DataAccess)] + [Test] public void ExtractFromZipFile() { File.Delete("LogoNLMW.xml"); ZipFileUtils.Extract(@"..\..\..\..\..\test-data\Common\DelftTools.Tests\zipfile\MetaData.zip", "."); Assert.IsTrue(File.Exists("LogoNLMW.xml")); } - [Test, Category(TestCategory.DataAccess)] + [Test] public void CreateEmptyZipFile() { var path = TestHelper.GetCurrentMethodName() + ".zip"; @@ -33,7 +33,7 @@ Assert.IsTrue(fileExists); } - [Test, Category(TestCategory.DataAccess)] + [Test] public void CreateEmptyZipFileWithOverwrite() { var path = TestHelper.GetCurrentMethodName() + ".zip"; @@ -58,7 +58,7 @@ Assert.IsTrue(fileExists); } - [Test, Category(TestCategory.DataAccess)] + [Test] public void CreateEmptyZipFileWithoutOverwrite() { var path = TestHelper.GetCurrentMethodName() + ".zip"; @@ -78,7 +78,7 @@ } } - [Test, Category(TestCategory.DataAccess)] + [Test] public void CreateZipFileWithFiles() { var zipFilePath = TestHelper.GetCurrentMethodName() + ".zip"; @@ -114,7 +114,7 @@ Assert.IsTrue(file2Exists); } - [Test, Category(TestCategory.DataAccess)] + [Test] public void CreateZipFileWithFilesAndADirectory() { var zipFilePath = TestHelper.GetCurrentMethodName() + ".zip";