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

            //Act
            graphDrawer.ZoomOutTwice();

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