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

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

private Not_inclusive_range_should_not_contain_same_inclusive_range ( ) : void
Результат void
        public void Not_inclusive_range_should_not_contain_same_inclusive_range()
        {
            var expectedLowerBound = 0;
            var expectedUpperBound = 1;
            var expectedRange = new Range<int>(expectedLowerBound, true, expectedUpperBound, true);

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

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