Skip to content

Commit

Permalink
unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
thepirat000 committed Dec 16, 2023
1 parent 7b66523 commit a0beb5c
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions test/Audit.PostgreSql.UnitTest/PostgreSqlTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
namespace Audit.PostgreSql.UnitTest
{
[TestFixture]
[Category("Integration")]
[Category("PostgreSQL")]
public class PostgreSqlTests
{
[OneTimeSetUp]
Expand Down Expand Up @@ -70,8 +72,6 @@ public void Test_PostgreDataProvider_FluentApiBuilder()
}

[Test]
[Category("Integration")]
[Category("PostgreSQL")]
public void Test_PostgreDataProvider_CustomDataColumn()
{
var overrideEventType = Guid.NewGuid().ToString();
Expand All @@ -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;
Expand All @@ -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 */
Expand All @@ -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;
Expand All @@ -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();
Expand All @@ -153,8 +145,6 @@ public void Test_EnumerateEvents_WhereExpression()
}

[Test]
[Category("Integration")]
[Category("PostgreSQL")]
public void Test_EnumerateEvents_WhereSortByExpression()
{
var overrideEventType = Guid.NewGuid().ToString();
Expand Down

0 comments on commit a0beb5c

Please sign in to comment.