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

            //Act
            graphDrawer.ZoomInTwice();

            //Assert
            Assert.AreEqual(graphDrawer.GetScale(), 100);
        }