コード例 #1
0
        public void WhenGitHubFlowVersionIsExecutedWithExecOption()
        {
            var buildFile = Path.Combine(RepositoryPath, "TestBuildFile.proj");

            File.WriteAllBytes(buildFile, Properties.Resources.TestBuildFile);
            _result = GitHubFlowVersionHelper.ExecuteIn(RepositoryPath, exec: MsBuild, execArgs: "TestBuildFile.proj /target:OutputResults");
        }
コード例 #2
0
 public void WhenGitHubFlowVersionIsExecuted()
 {
     _result = GitHubFlowVersionHelper.ExecuteIn(RepositoryPath);
 }
コード例 #3
0
 public void WhenGitHubFlowVersionIsExecutedWithToFileOptionSet()
 {
     _tempFile = Path.Combine(PathHelper.GetTempPath(), "ToFileTest.json");
     _result   = GitHubFlowVersionHelper.ExecuteIn(RepositoryPath, toFile: _tempFile);
 }