public void CalculateWeightUnitTest()
        {
            Assert.Inconclusive("TODO");

            EdgeModel edge           = null;                                                     // TODO: Initialize to an appropriate value
            ushort    edgePropertyId = 0;                                                        // TODO: Initialize to an appropriate value
            var       direction      = new Direction();                                          // TODO: Initialize to an appropriate value
            double    weight         = 0F;                                                       // TODO: Initialize to an appropriate value
            var       target         = new PathElement(edge, edgePropertyId, direction, weight); // TODO: Initialize to an appropriate value

            PathDelegates.VertexCost vertexCost = null;                                          // TODO: Initialize to an appropriate value
            PathDelegates.EdgeCost   edgeCost   = null;                                          // TODO: Initialize to an appropriate value
            target.CalculateWeight(vertexCost, edgeCost);
        }