AppUpdater.Tests.Publisher.AppPublisherTests.Publish_WithValidInfo_CopiesTheFilesToTargetDirWithDeployExtension C# (CSharp) Method

Publish_WithValidInfo_CopiesTheFilesToTargetDirWithDeployExtension() private method

        public void Publish_WithValidInfo_CopiesTheFilesToTargetDirWithDeployExtension()
        {
            appPublisher.Publish(sourceDir, destinationDir, "1.1.0", 0);

            Assert.That(File.Exists(Path.Combine(destinationDir, "1.1.0\\test1.txt.deploy")), Is.True);
            Assert.That(File.Exists(Path.Combine(destinationDir, "1.1.0\\another\\test2.txt.deploy")), Is.True);
        }