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

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