// Copyright (C) Stichting Deltares 2018. All rights reserved. // // This file is part of Ringtoets. // // Ringtoets 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 . // // All names, logos, and references to "Deltares" are registered trademarks of // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. using System.Collections.Generic; using Core.Common.TestUtil; using NUnit.Framework; using Riskeer.Integration.IO.Assembly; namespace Ringtoets.Integration.IO.Test.Assembly { [TestFixture] public class ExportableAssemblyMethodTest : EnumValuesTestFixture { protected override IDictionary ExpectedValueForEnumValues { get { return new Dictionary { { ExportableAssemblyMethod.WBI0E1, 1 }, { ExportableAssemblyMethod.WBI0E3, 2 }, { ExportableAssemblyMethod.WBI0G1, 3 }, { ExportableAssemblyMethod.WBI0G3, 4 }, { ExportableAssemblyMethod.WBI0G4, 5 }, { ExportableAssemblyMethod.WBI0G5, 6 }, { ExportableAssemblyMethod.WBI0G6, 7 }, { ExportableAssemblyMethod.WBI0T1, 8 }, { ExportableAssemblyMethod.WBI0T3, 9 }, { ExportableAssemblyMethod.WBI0T4, 10 }, { ExportableAssemblyMethod.WBI0T5, 11 }, { ExportableAssemblyMethod.WBI0T6, 12 }, { ExportableAssemblyMethod.WBI0T7, 13 }, { ExportableAssemblyMethod.WBI0A1, 14 }, { ExportableAssemblyMethod.WBI1A1, 15 }, { ExportableAssemblyMethod.WBI1B1, 16 }, { ExportableAssemblyMethod.WBI2A1, 17 }, { ExportableAssemblyMethod.WBI2B1, 18 }, { ExportableAssemblyMethod.WBI2C1, 19 }, { ExportableAssemblyMethod.WBI3A1, 20 }, { ExportableAssemblyMethod.WBI3B1, 21 }, { ExportableAssemblyMethod.WBI3C1, 22 } }; } } } }