mirror of
https://github.com/farcasclaudiu/LanBackup.git
synced 2026-06-22 15:01:14 +03:00
15 lines
277 B
C#
15 lines
277 B
C#
using System;
|
|
using Xunit.Abstractions;
|
|
|
|
namespace LanBackup.WebApp.Tests
|
|
{
|
|
public static class TestOutputHelperExtender
|
|
{
|
|
public static void Log(this ITestOutputHelper output, string msg)
|
|
{
|
|
output.WriteLine(msg);
|
|
Console.WriteLine(msg);
|
|
}
|
|
}
|
|
}
|