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

Commit 8fca813

Browse files
committed
Add adhoc test + remove hanging PrintSql
1 parent 24bb7a2 commit 8fca813

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

tests/ServiceStack.OrmLite.Tests/UniqueConstraintTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ public class User
124124
[Test]
125125
public void Can_create_User_table_with_Unique_constraints()
126126
{
127-
OrmLiteUtils.PrintSql();
128127
using (var db = OpenDbConnection())
129128
{
130129
db.DropTable<User>();
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System;
2+
using NUnit.Framework;
3+
using ServiceStack.DataAnnotations;
4+
5+
namespace ServiceStack.OrmLite.Tests
6+
{
7+
public class _Adhoc : OrmLiteTestBase
8+
{
9+
public _Adhoc() : base(Dialect.PostgreSql) { }
10+
11+
}
12+
}

0 commit comments

Comments
 (0)