Amido.PreProcessor.Cmd.Tests.TokenisationRunnerTests.TestProcessSingleTemplate C# (CSharp) Method

TestProcessSingleTemplate() private method

private TestProcessSingleTemplate ( string sourceFile, string destDir, string destFile, string backupFile, string template, string processedTemplate, IList tokensNotFound, bool destinationExists, bool backupExists, bool destDirExists, bool willWriteToDestination ) : void
sourceFile string
destDir string
destFile string
backupFile string
template string
processedTemplate string
tokensNotFound IList
destinationExists bool
backupExists bool
destDirExists bool
willWriteToDestination bool
return void
        private void TestProcessSingleTemplate(string sourceFile, string destDir, string destFile, string backupFile, string template, string processedTemplate, IList<string> tokensNotFound, bool destinationExists, bool backupExists, bool destDirExists, bool willWriteToDestination)
        {
            var properties = new Dictionary<string, string>();
            properties.Add("token1", "value1");

            this.SetUpMocks(sourceFile, destDir, destFile, backupFile, template, processedTemplate, properties, tokensNotFound, destinationExists, backupExists, destDirExists, willWriteToDestination);

            this.tokenisationRunner.ProcessSingleTemplate(properties, sourceFile, destFile);
        }