16 lines
363 B
C#
16 lines
363 B
C#
using StandardScene.Fass2Simulator;
|
|||
|
|
using Xunit;
|
||
|
|
|
||
|
|
namespace StandardScene.Magnetic.Tests.Tasking
|
||
|
|
{
|
||
|
|
public class Fass2SimFileLoggerTests
|
||
|
|
{
|
||
|
|
[Fact]
|
||
|
|
public void Write_WithoutConfigure_DoesNotThrow()
|
||
|
|
{
|
||
|
|
var ex = Record.Exception(() => Fass2SimFileLogger.Write("logger probe"));
|
||
|
|
Assert.Null(ex);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|