Skip to content

Commit 52593bd

Browse files
committed
Upgrade AdoNet.Specification.Tests.
1 parent 633eea3 commit 52593bd

File tree

4 files changed

+26
-2
lines changed

4 files changed

+26
-2
lines changed

tests/Conformance.Tests/CommandTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using AdoNet.Specification.Tests;
2-
using Xunit;
32

43
namespace Conformance.Tests
54
{

tests/Conformance.Tests/Conformance.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="AdoNet.Specification.Tests" Version="2.0.0-alpha6" />
14+
<PackageReference Include="AdoNet.Specification.Tests" Version="2.0.0-alpha7" />
1515
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />
1616
<PackageReference Include="xunit" Version="2.4.1" />
1717
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
using AdoNet.Specification.Tests;
2+
3+
namespace Conformance.Tests
4+
{
5+
public sealed class ConnectionStringBuilderTests : ConnectionStringTestBase<DbFactoryFixture>
6+
{
7+
public ConnectionStringBuilderTests(DbFactoryFixture fixture)
8+
: base(fixture)
9+
{
10+
}
11+
}
12+
13+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using AdoNet.Specification.Tests;
2+
3+
namespace Conformance.Tests
4+
{
5+
public sealed class TransactionTests : TransactionTestBase<DbFactoryFixture>
6+
{
7+
public TransactionTests(DbFactoryFixture fixture)
8+
: base(fixture)
9+
{
10+
}
11+
}
12+
}

0 commit comments

Comments
 (0)