public UsingStatic(ITestOutputHelper testOutput)
 {
     XunitContext.Register(testOutput);
 }
 public StaticConstructor(ITestOutputHelper testOutput)
 {
     XunitContext.Register(testOutput);
 }
Exemple #3
0
 public VerifyBase(
     ITestOutputHelper output,
     [CallerFilePath] string sourceFile = "")
 {
     XunitContext.Register(output, sourceFile);
 }
 public XunitLoggerSample(ITestOutputHelper testOutput)
 {
     XunitContext.Register(testOutput);
 }