// /*************************************************************************** // Aaru Data Preservation Suite // ---------------------------------------------------------------------------- // // Filename : FAT16.cs // Author(s) : Natalia Portillo // // Component : Aaru unit testing. // // --[ License ] -------------------------------------------------------------- // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // ---------------------------------------------------------------------------- // Copyright © 2011-2023 Natalia Portillo // ****************************************************************************/ using System.IO; using Aaru.CommonTypes; using Aaru.CommonTypes.Interfaces; using Aaru.Filesystems; using NUnit.Framework; namespace Aaru.Tests.Filesystems.FAT16; [TestFixture] public class Human() : ReadOnlyFilesystemTest("fat16") { public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "FAT16 (Human68K)"); public override IFilesystem Plugin => new FAT(); public override bool Partitions => true; public override FileSystemTest[] Tests => new[] { new FileSystemTest { TestFile = "sasidisk.aif", MediaType = MediaType.GENERIC_HDD, Sectors = 162096, SectorSize = 256, Bootable = true, Clusters = 40510, ClusterSize = 1024, SystemId = "Hudson soft 2.00" }, new FileSystemTest { TestFile = "scsidisk.aif", MediaType = MediaType.GENERIC_HDD, Sectors = 204800, SectorSize = 512, Bootable = true, Clusters = 102367, ClusterSize = 1024, SystemId = " Hero Soft V1.10" } }; }