Ejemplo n.º 1
0
        public void TestInitialize()
        {
            correctFileName = @"C:\Users\lucioc\Desktop\class_share\Samples\WCF\WcfService1\TestProject1\resources\PEP_posM.pptx";

            powerPointControl = new PowerPointControl();
            powerPointControl.preparePresentation(correctFileName);
            powerPointControl.startPresentation();
        }
        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);
        }