public void closeNotStartedPresentationTest()
 {
     PowerPointControl target = new PowerPointControl(); // TODO: Initialize to an appropriate value
                 
     bool expected = false; // TODO: Initialize to an appropriate value
     bool actual;
     actual = target.closePresentation();
     Assert.AreEqual(expected, actual);
 }
        public void closePresentationTest()
        {
            PowerPointControl target = new PowerPointControl(); // TODO: Initialize to an appropriate value

            target.preparePresentation(correctFileName);
            target.startPresentation();
            
            bool expected = true; // TODO: Initialize to an appropriate value
            bool actual;
            actual = target.closePresentation();
            Assert.AreEqual(expected, actual);
        }