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

            //Act
            graphDrawer.HideIntegral();
            graphDrawer.ShowIntegral();

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