public void Run_SquirrelLosesRace_ReturnsFalse()
        {
            /* TODO Get feedback on this test. There's probably a better way to test this
             * besides just doing a single run, which will always return false on the first run
             * because the max distance a squirrel can randomly travel is 4 and they need to travel
             * a distance of 100 in this test to win.
             * */

            //Arrange
            PictureBox myPictureBox = new PictureBox();
            Random     randomizer   = new Random();
            Squirrel   squirrel     = new Squirrel {
                Location = 0, RacetrackLength = 100, MyPictureBox = myPictureBox, Randomizer = randomizer
            };

            //Act
            bool thereIsAWinner = squirrel.Run();

            //Assert
            Assert.IsFalse(thereIsAWinner);
        }