2019-06-27 09:40:35 +08:00

16 lines
466 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.
}
}