public void GetXMLActionTest()
        {
            CopyFileAction target = new CopyFileAction();

            target.SourceFile        = @"C:\Windows\Config.txt";
            target.DestinationFolder = @"C:\Windows\";

            string expected = "<Action>\r\n<ElementType>CustomActions.CopyFileAction</ElementType>\r\n<SourceFile>" + target.SourceFile + "</SourceFile>\r\n<DestinationFolder>" + target.DestinationFolder + "</DestinationFolder>\r\n</Action>";
            string actual;

            actual = target.GetXMLAction();
            Assert.AreEqual(expected, actual, "The method 'GetXMLAction' doesn't return the good string.");
        }