9 lines
208 B
C#
9 lines
208 B
C#
namespace Xunit.Abstractions
|
|
{
|
|
public interface ITestOutputHelper {
|
|
void WriteLine();
|
|
void WriteLine(string value);
|
|
void WriteLine(string format, params object[] args);
|
|
}
|
|
}
|