using System.Collections.Generic; using NUnit.Framework; namespace AuthorizationTest { [TestFixture] public class DamLiveAuthorizationTest : AuthorizationTestBase { public override string GetFeature() { return "DGS_27_00"; } public override IEnumerable GetSupportedFeatureVersions() { return new[] { "14.0", "15.0", "17.0" }; } public override IEnumerable GetUnsupportedFeatureVersions() { return new[] { "18.0" }; } } }