mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-16 05:44:56 +00:00
* Include but mark inactive drives (fixes #87) * Add more checks for the active flag * Force users to choose on dump * Fix quotes * Update SolidShield 1 * Select first active by default * Add TODO * Add dumping progress indicator * Clamp runtime * Add first textfile scans; EA CdKey * Slightly better executable detection * Better file type detection * Get as much into magic number checks as possible * Nicer formatting * Trailing slash * Add back for benefit of the doubt * Remove dead code * Safer cabinet scanning * Remove iXcomp; Add Unshield * Fix build, add more comments * Post-merge cleanup * Add a new log line * Make protection scan mechanics easier to see * Add a space
16 lines
315 B
C#
16 lines
315 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", true).IsFloppy);
|
|
}
|
|
}
|
|
}
|