public void TestInverseFunctionSwitch()
        {
            //Arrange
            GraphDrawer graphDrawer = new GraphDrawer();

            //Act
            graphDrawer.HideInverseFunction();
            graphDrawer.ShowInverseFunction();

            //Assert
            Assert.AreEqual(graphDrawer.IsShowInverseFunction, true);
        }