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

            var target = new IndexFactory(); // TODO: Initialize to an appropriate value

            target.DeleteAllIndices();
        }
Пример #2
0
        public void Dispose()
        {
            TabulaRasa();

            _graphElements = null;

            IndexFactory.DeleteAllIndices();
            IndexFactory = null;

            ServiceFactory.ShutdownAllServices();
            ServiceFactory = null;
        }
Пример #3
0
        public void TabulaRasa()
        {
            if (WriteResource())
            {
                _currentId     = 0;
                _graphElements = new List <AGraphElement>();
                IndexFactory.DeleteAllIndices();
                VertexCount = 0;
                EdgeCount   = 0;

                FinishWriteResource();

                return;
            }

            throw new CollisionException(this);
        }