FreeSql/FreeSql.Tests/DataContext/SqlServer/SqlServerCollection.cs

16 lines
436 B
C#

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.
}
}