예제 #1
0
        public void CreateEdgeIntegrationTest()
        {
            Assert.Inconclusive("TODO.");

            IWrite target         = CreateIWrite(); // TODO: Initialize to an appropriate value
            int    sourceVertexId = 0;              // TODO: Initialize to an appropriate value
            ushort edgePropertyId = 0;              // TODO: Initialize to an appropriate value
            int    targetVertexId = 0;              // TODO: Initialize to an appropriate value
            uint   creationDate   = 0;              // TODO: Initialize to an appropriate value

            PropertyContainer[] properties = null;  // TODO: Initialize to an appropriate value
            EdgeModel           expected   = null;  // TODO: Initialize to an appropriate value
            EdgeModel           actual;

            actual = target.CreateEdge(sourceVertexId, edgePropertyId, targetVertexId, creationDate, properties);
            Assert.AreEqual(expected, actual);
        }