mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-26 12:42:50 +08:00
16 lines
466 B
C#
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.
|
|
}
|
|
}
|