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

            //Act
            graphDrawer.ZoomOut();

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