public void GivenTheFileManager()
        {
            this.pathTestEnvironment =
                VisualStudioHelper.GetProjectDirectory("T4.FileManager.VisualStudio.AcceptanceCriteria");
            var pathSource = Path.Combine(pathTestEnvironment, "..\\..\\", "src\\");

            var fileManagerFromSource = Path.Combine(pathSource, "T4.FileManager.VisualStudio.ttinclude");
            var fileManagerForTest    = Path.Combine(this.pathTestEnvironment, "T4.FileManager.VisualStudio.ttinclude");

            File.Copy(fileManagerFromSource, fileManagerForTest, true);

            this.targetTestPath = this.pathTestEnvironment;
        }
        public void GivenTheFileManager()
        {
            var pathDestination =
                VisualStudioHelper.GetProjectDirectory("T4.FileManager.VisualStudio.AcceptanceCriteria");
            var pathSource = Path.Combine(pathDestination, "..\\..\\", "src\\T4.FileManager.VisualStudio");

            var fmSource = Path.Combine(pathSource, "T4.FileManager.VisualStudio.ttinclude");
            var fmDest   = Path.Combine(pathDestination, "T4.FileManager.VisualStudio.ttinclude");

            File.Copy(fmSource, fmDest, true);

            sourcePath     = pathDestination;
            targetTestPath = pathDestination;
        }