11 lines
164 B
C#
11 lines
164 B
C#
|
using System;
|
||
|
|
||
|
namespace Bit.Test.Common.AutoFixture
|
||
|
{
|
||
|
public interface ISutProvider
|
||
|
{
|
||
|
Type SutType { get; }
|
||
|
ISutProvider Create();
|
||
|
}
|
||
|
}
|