diff --git a/test/Audit.PostgreSql.UnitTest/PostgreSqlTests.cs b/test/Audit.PostgreSql.UnitTest/PostgreSqlTests.cs index ad7180c0..68407f52 100644 --- a/test/Audit.PostgreSql.UnitTest/PostgreSqlTests.cs +++ b/test/Audit.PostgreSql.UnitTest/PostgreSqlTests.cs @@ -9,6 +9,8 @@ namespace Audit.PostgreSql.UnitTest { [TestFixture] + [Category("Integration")] + [Category("PostgreSQL")] public class PostgreSqlTests { [OneTimeSetUp] @@ -70,8 +72,6 @@ public void Test_PostgreDataProvider_FluentApiBuilder() } [Test] - [Category("Integration")] - [Category("PostgreSQL")] public void Test_PostgreDataProvider_CustomDataColumn() { var overrideEventType = Guid.NewGuid().ToString(); @@ -88,8 +88,6 @@ public void Test_PostgreDataProvider_CustomDataColumn() } [Test] - [Category("Integration")] - [Category("PostgreSQL")] public void Test_PostgreDataProvider_Paging_No_Where() { const int pageNumberOne = 1; @@ -103,8 +101,6 @@ public void Test_PostgreDataProvider_Paging_No_Where() } [Test] - [Category("Integration")] - [Category("PostgreSQL")] public void Test_PostgreDataProvider_Paging_OutOfRange_Inputs() { /* define negative values. the code should "safety-ize" them to page-number=1 and page-size=1 */ @@ -119,8 +115,6 @@ public void Test_PostgreDataProvider_Paging_OutOfRange_Inputs() } [Test] - [Category("Integration")] - [Category("PostgreSQL")] public void Test_PostgreDataProvider_Paging_With_Where() { const int pageNumber = 3; @@ -135,8 +129,6 @@ public void Test_PostgreDataProvider_Paging_With_Where() } [Test] - [Category("Integration")] - [Category("PostgreSQL")] public void Test_EnumerateEvents_WhereExpression() { var overrideEventType = Guid.NewGuid().ToString(); @@ -153,8 +145,6 @@ public void Test_EnumerateEvents_WhereExpression() } [Test] - [Category("Integration")] - [Category("PostgreSQL")] public void Test_EnumerateEvents_WhereSortByExpression() { var overrideEventType = Guid.NewGuid().ToString();