public void Clear_ThowsNotSupportedException()
        {
            WayCoordinateList target = new WayCoordinateList(_nodes);

            Assert.Throws<NotSupportedException>(() => target.Clear());
        }