mirror of
https://github.com/SabreTools/MPF.git
synced 2026-07-02 17:24:48 +00:00
16 lines
309 B
C#
16 lines
309 B
C#
using DICUI.Utilities;
|
|
using Xunit;
|
|
|
|
namespace DICUI.Test.Utilities
|
|
{
|
|
public class DriveTest
|
|
{
|
|
[Fact]
|
|
public void DriveConstructorsTest()
|
|
{
|
|
Assert.True(Drive.Floppy('a').IsFloppy);
|
|
Assert.False(Drive.Optical('d', "test").IsFloppy);
|
|
}
|
|
}
|
|
}
|