mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-18 20:08:15 +08:00
使用SharedContext模式调整FreeSql.Tests的SqlServer连接。
This commit is contained in:
15
FreeSql.Tests/DataContext/SqlServer/SqlServerCollection.cs
Normal file
15
FreeSql.Tests/DataContext/SqlServer/SqlServerCollection.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using Xunit;
|
||||
|
||||
namespace FreeSql.Tests.DataContext.SqlServer
|
||||
{
|
||||
[CollectionDefinition("SqlServerCollection")]
|
||||
public class SqlServerCollection : ICollectionFixture<SqlServerFixture>
|
||||
{
|
||||
// This class has no code, and is never created. Its purpose is simply
|
||||
// to be the place to apply [CollectionDefinition] and all the
|
||||
// ICollectionFixture<> interfaces.
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user