public void TestSynchronizeToLifeRunnerOperationException()
        {
            GraphController graphController= new GraphController(null);

            Assert.Throws<InvalidOperationException>(() =>
            {
                DeltaNodes deltaNodes = new DeltaNodes();
                graphController.SynchronizeToLiveRunner(deltaNodes);
            });
        }