コード例 #1
0
 private static void ConfigureAction(XUnitLoggerOptions options)
 {
 }
コード例 #2
0
ファイル: XUnitLogger.cs プロジェクト: thrixton/xunit-logging
 /// <summary>
 /// Initializes a new instance of the <see cref="XUnitLogger"/> class.
 /// </summary>
 /// <param name="name">The name for messages produced by the logger.</param>
 /// <param name="outputHelper">The <see cref="ITestOutputHelper"/> to use.</param>
 /// <param name="options">The <see cref="XUnitLoggerOptions"/> to use.</param>
 /// <exception cref="ArgumentNullException">
 /// <paramref name="name"/> or <paramref name="outputHelper"/> is <see langword="null"/>.
 /// </exception>
 public XUnitLogger(string name, ITestOutputHelper outputHelper, XUnitLoggerOptions options)
     : this(name, new TestOutputHelperAccessor(outputHelper), options)
 {
 }