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

            Assert.Throws <NotSupportedException>(() => target.Insert(0, Coordinate.Empty));
        }