Index: Core/Components/test/Core.Components.Gis.Test/Core.Components.Gis.Test.csproj =================================================================== diff -u -rf3f69076f923a7b691bd550dd0d610ae913b0758 -ra2fd2a5b13d03a2db66fa38059bc6cbdda001008 --- Core/Components/test/Core.Components.Gis.Test/Core.Components.Gis.Test.csproj (.../Core.Components.Gis.Test.csproj) (revision f3f69076f923a7b691bd550dd0d610ae913b0758) +++ Core/Components/test/Core.Components.Gis.Test/Core.Components.Gis.Test.csproj (.../Core.Components.Gis.Test.csproj) (revision a2fd2a5b13d03a2db66fa38059bc6cbdda001008) @@ -20,6 +20,7 @@ + Index: Core/Components/test/Core.Components.Gis.Test/Theme/ValueCriterionOperatorTest.cs =================================================================== diff -u --- Core/Components/test/Core.Components.Gis.Test/Theme/ValueCriterionOperatorTest.cs (revision 0) +++ Core/Components/test/Core.Components.Gis.Test/Theme/ValueCriterionOperatorTest.cs (revision a2fd2a5b13d03a2db66fa38059bc6cbdda001008) @@ -0,0 +1,48 @@ +// Copyright (C) Stichting Deltares 2017. 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 Lesser 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 Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser 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 Core.Components.Gis.Theme; +using NUnit.Framework; + +namespace Core.Components.Gis.Test.Theme +{ + [TestFixture] + public class ValueCriterionOperatorTest : EnumValuesTestFixture + { + protected override IDictionary ExpectedValueForEnumValues + { + get + { + return new Dictionary + { + { + ValueCriterionOperator.EqualValue, 1 + }, + { + ValueCriterionOperator.UnequalValue, 2 + } + }; + } + } + } +} \ No newline at end of file