Arc.Unit.Tests.Domain.Units.RangeTests.Element_should_not_be_in_range_when_its_equal_to_lower_bound_and_its_not_inclusive C# (CSharp) Метод

Element_should_not_be_in_range_when_its_equal_to_lower_bound_and_its_not_inclusive() приватный Метод

        public void Element_should_not_be_in_range_when_its_equal_to_lower_bound_and_its_not_inclusive()
        {
            var expectedLowerBound = 0;
            var expectedUpperBound = 1;
            var expectedElement = 0;

            var target = new Range<int>(expectedLowerBound, false, expectedUpperBound, false);
            var actual = target.Contains(expectedElement);

            Assert.That(actual, Is.False);
        }