Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit a2e651e

Browse files
committed
Latest NUnit doesn't ignore classes anymore, need to annotate methods
1 parent 3378bfc commit a2e651e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/ServiceStack.OrmLite.Tests/LicenseUsageTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ public void TearDown()
3333
#endif
3434
}
3535

36-
[Test]
36+
[Ignore(""), Test]
3737
public void Allows_creation_of_10_tables()
3838
{
3939
Create10Tables();
4040
Create10Tables();
4141
}
4242

43-
[Test]
43+
[Ignore(""), Test]
4444
public void Throws_on_creation_of_11_tables()
4545
{
4646
Create10Tables();

tests/ServiceStack.OrmLite.Tests/LoggingTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class LoggingTests : OrmLiteProvidersTestBase
2222
{
2323
public LoggingTests(DialectContext context) : base(context) {}
2424

25-
[Test]
25+
[NUnit.Framework.Ignore(""), Test]
2626
public void Does_log_all_statements()
2727
{
2828
var sbLogFactory = new StringBuilderLogFactory();
@@ -60,7 +60,7 @@ public void Does_log_all_statements()
6060
Assert.That(logs, Does.Contain("DELETE FROM"));
6161
}
6262

63-
[Test]
63+
[NUnit.Framework.Ignore(""), Test]
6464
public void Can_handle_sql_exceptions()
6565
{
6666
string lastSql = null;

0 commit comments

Comments
 (0)