Example #1
0
        public void RemovePathTest()
        {
            Path path = new Path();

            container.AddPath(path);

            Assert.That(container.Count, Is.EqualTo(1));
            Assert.True(container.RemovePath(path));
            Assert.That(container.Count, Is.EqualTo(0));
        }