You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
728 B
C#
34 lines
728 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
using Xunit;
|
|
|
|
namespace OptionsPattern.Sutdy.Advanced
|
|
{
|
|
public class OptionsFactoryTest : IDisposable
|
|
{
|
|
private readonly ITestOutputHelper? _output;
|
|
public OptionsFactoryTest(ITestOutputHelperAccessor outputHelperAccessor)
|
|
{
|
|
if (outputHelperAccessor == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(outputHelperAccessor));
|
|
}
|
|
_output = outputHelperAccessor.Output;
|
|
}
|
|
|
|
[Fact]
|
|
public void Test()
|
|
{
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|