当前位置: 首页>>代码示例>>C#>>正文


C# Octokit.DeploymentsClient类代码示例

本文整理汇总了C#中Octokit.DeploymentsClient的典型用法代码示例。如果您正苦于以下问题:C# DeploymentsClient类的具体用法?C# DeploymentsClient怎么用?C# DeploymentsClient使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


DeploymentsClient类属于Octokit命名空间,在下文中一共展示了DeploymentsClient类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: EnsuresNonEmptyArguments

        public async Task EnsuresNonEmptyArguments()
        {
            var client = new DeploymentsClient(Substitute.For<IApiConnection>());

            await Assert.ThrowsAsync<ArgumentException>(() => client.Create("", "name", newDeployment));
            await Assert.ThrowsAsync<ArgumentException>(() => client.Create("owner", "", newDeployment));
        }
开发者ID:cloudRoutine,项目名称:octokit.net,代码行数:7,代码来源:DeploymentsClientTests.cs

示例2: EnsuresNonEmptyArguments

        public async Task EnsuresNonEmptyArguments()
        {
            var client = new DeploymentsClient(Substitute.For<IApiConnection>());

            Assert.Throws<ArgumentException>(() => client.GetAll("", "name"));
            Assert.Throws<ArgumentException>(() => client.GetAll("owner", ""));
        }
开发者ID:Therzok,项目名称:octokit.net,代码行数:7,代码来源:DeploymentsClientTests.cs

示例3: EnsuresNonNullArguments

        public async Task EnsuresNonNullArguments()
        {
            var client = new DeploymentsClient(Substitute.For<IApiConnection>());

            await Assert.ThrowsAsync<ArgumentNullException>(() => client.GetAll(null, "name"));
            await Assert.ThrowsAsync<ArgumentNullException>(() => client.GetAll("owner", null));
        }
开发者ID:cloudRoutine,项目名称:octokit.net,代码行数:7,代码来源:DeploymentsClientTests.cs

示例4: EnsuresNonWhitespaceArguments

        public async Task EnsuresNonWhitespaceArguments(string whitespace)
        {
            var client = new DeploymentsClient(Substitute.For<IApiConnection>());

            await AssertEx.Throws<ArgumentException>(() => client.GetAll(whitespace, "name"));
            await AssertEx.Throws<ArgumentException>(() => client.GetAll("owner", whitespace));
        }
开发者ID:Therzok,项目名称:octokit.net,代码行数:7,代码来源:DeploymentsClientTests.cs

示例5: RepositoriesClient

        /// <summary>
        /// Initializes a new GitHub Repos API client.
        /// </summary>
        /// <param name="apiConnection">An API connection</param>
        public RepositoriesClient(IApiConnection apiConnection) : base(apiConnection)
        {
            Status = new CommitStatusClient(apiConnection);
            Hooks = new RepositoryHooksClient(apiConnection);
            Forks = new RepositoryForksClient(apiConnection);
#pragma warning disable CS0618 // Type or member is obsolete
            RepoCollaborators = new RepoCollaboratorsClient(apiConnection);
#pragma warning restore CS0618 // Type or member is obsolete
            Collaborator = new RepoCollaboratorsClient(apiConnection);
            Statistics = new StatisticsClient(apiConnection);
            Deployment = new DeploymentsClient(apiConnection);
            PullRequest = new PullRequestsClient(apiConnection);
#pragma warning disable CS0618 // Type or member is obsolete
            RepositoryComments = new RepositoryCommentsClient(apiConnection);
#pragma warning restore CS0618 // Type or member is obsolete
            Comment = new RepositoryCommentsClient(apiConnection);
#pragma warning disable CS0618 // Type or member is obsolete
            Commits = new RepositoryCommitsClient(apiConnection);
#pragma warning restore CS0618 // Type or member is obsolete
            Commit = new RepositoryCommitsClient(apiConnection);
            Release = new ReleasesClient(apiConnection);
            DeployKeys = new RepositoryDeployKeysClient(apiConnection);
            Merging = new MergingClient(apiConnection);
            Content = new RepositoryContentsClient(apiConnection);
            Page = new RepositoryPagesClient(apiConnection);
        }
开发者ID:RadicalLove,项目名称:octokit.net,代码行数:30,代码来源:RepositoriesClient.cs

示例6: RepositoriesClient

 /// <summary>
 /// Initializes a new GitHub Repos API client.
 /// </summary>
 /// <param name="apiConnection">An API connection</param>
 public RepositoriesClient(IApiConnection apiConnection) : base(apiConnection)
 {
     CommitStatus = new CommitStatusClient(apiConnection);
     RepoCollaborators = new RepoCollaboratorsClient(apiConnection);
     Statistics = new StatisticsClient(apiConnection);
     Deployment = new DeploymentsClient(apiConnection);
     PullRequest = new PullRequestsClient(apiConnection);
 }
开发者ID:Therzok,项目名称:octokit.net,代码行数:12,代码来源:RepositoriesClient.cs

示例7: EnsuresNonNullArguments

        public void EnsuresNonNullArguments()
        {
            var client = new DeploymentsClient(Substitute.For<IApiConnection>());

            AssertEx.Throws<ArgumentNullException>(() => client.Create(null, "name", newDeployment));
            AssertEx.Throws<ArgumentNullException>(() => client.Create("owner", null, newDeployment));
            AssertEx.Throws<ArgumentNullException>(() => client.Create("owner", "name", null));
        }
开发者ID:Therzok,项目名称:octokit.net,代码行数:8,代码来源:DeploymentsClientTests.cs

示例8: RequestsCorrectUrl

        public void RequestsCorrectUrl()
        {
            var connection = Substitute.For<IApiConnection>();
            var client = new DeploymentsClient(connection);
            var expectedUrl = "repos/owner/name/deployments";

            client.GetAll("owner", "name");
            connection.Received(1).GetAll<Deployment>(Arg.Is<Uri>(u => u.ToString() == expectedUrl));
        }
开发者ID:cloudRoutine,项目名称:octokit.net,代码行数:9,代码来源:DeploymentsClientTests.cs

示例9: RequestsCorrectUrl

        public void RequestsCorrectUrl()
        {
            var connection = Substitute.For<IApiConnection>();
            var client = new DeploymentsClient(connection);
            var expectedUrl = string.Format("repos/{0}/{1}/deployments", owner, name);

            client.GetAll(owner, name);
            connection.Received(1)
                .GetAll<Deployment>(Arg.Is<Uri>(u => u.ToString() == expectedUrl), Args.ApiOptions);
        }
开发者ID:jrusbatch,项目名称:octokit.net,代码行数:10,代码来源:DeploymentsClientTests.cs

示例10: UsesPreviewAcceptsHeader

        public void UsesPreviewAcceptsHeader()
        {
            var connection = Substitute.For<IApiConnection>();
            var client = new DeploymentsClient(connection);

            client.GetAll("owner", "name");
            connection.Received().GetAll<Deployment>(Arg.Any<Uri>(),
                                                     Arg.Any<IDictionary<string, string>>(),
                                                     ExpectedAcceptHeader);
        }
开发者ID:Therzok,项目名称:octokit.net,代码行数:10,代码来源:DeploymentsClientTests.cs

示例11: RequestsCorrectUrlWithRepositoryId

        public async Task RequestsCorrectUrlWithRepositoryId()
        {
            var connection = Substitute.For<IApiConnection>();
            var client = new DeploymentsClient(connection);
            var expectedUrl = string.Format("repositories/{0}/deployments", repositoryId);

            await client.GetAll(repositoryId);

            connection.Received(1)
                .GetAll<Deployment>(Arg.Is<Uri>(u => u.ToString() == expectedUrl), 
                                    Args.ApiOptions);
        }
开发者ID:rlugojr,项目名称:octokit.net,代码行数:12,代码来源:DeploymentsClientTests.cs

示例12: RequestsCorrectUrl

        public async Task RequestsCorrectUrl()
        {
            var connection = Substitute.For<IApiConnection>();
            var client = new DeploymentsClient(connection);
            var expectedUrl = string.Format("repos/{0}/{1}/deployments", owner, name);

            await client.GetAll(owner, name);

            connection.Received(1)
                .GetAll<Deployment>(Arg.Is<Uri>(u => u.ToString() == expectedUrl), null,
                                    "application/vnd.github.ant-man-preview+json", 
                                    Args.ApiOptions);
        }
开发者ID:rlugojr,项目名称:octokit.net,代码行数:13,代码来源:DeploymentsClientTests.cs

示例13: RequestsCorrectUrlWithApiOptions

        public void RequestsCorrectUrlWithApiOptions()
        {
            var connection = Substitute.For<IApiConnection>();
            var client = new DeploymentsClient(connection);
            var expectedUrl = string.Format("repos/{0}/{1}/deployments", owner, name);

            var options = new ApiOptions
            {
                PageSize = 1,
                PageCount = 1,
                StartPage = 1
            };

            client.GetAll(owner, name, options);
            connection.Received(1)
                .GetAll<Deployment>(Arg.Is<Uri>(u => u.ToString() == expectedUrl), options);
        }
开发者ID:jrusbatch,项目名称:octokit.net,代码行数:17,代码来源:DeploymentsClientTests.cs

示例14: RepositoriesClient

 /// <summary>
 /// Initializes a new GitHub Repos API client.
 /// </summary>
 /// <param name="apiConnection">An API connection</param>
 public RepositoriesClient(IApiConnection apiConnection) : base(apiConnection)
 {
     Status = new CommitStatusClient(apiConnection);
     Hooks = new RepositoryHooksClient(apiConnection);
     Forks = new RepositoryForksClient(apiConnection);
     Collaborator = new RepoCollaboratorsClient(apiConnection);
     Statistics = new StatisticsClient(apiConnection);
     Deployment = new DeploymentsClient(apiConnection);
     PullRequest = new PullRequestsClient(apiConnection);
     Comment = new RepositoryCommentsClient(apiConnection);
     Commit = new RepositoryCommitsClient(apiConnection);
     Release = new ReleasesClient(apiConnection);
     DeployKeys = new RepositoryDeployKeysClient(apiConnection);
     Merging = new MergingClient(apiConnection);
     Content = new RepositoryContentsClient(apiConnection);
     Page = new RepositoryPagesClient(apiConnection);
     Invitation = new RepositoryInvitationsClient(apiConnection);
     Branch = new RepositoryBranchesClient(apiConnection);
 }
开发者ID:SmithAndr,项目名称:octokit.net,代码行数:23,代码来源:RepositoriesClient.cs

示例15: SetsStatusesClient

 public void SetsStatusesClient()
 {
     var client = new DeploymentsClient(Substitute.For<IApiConnection>());
     Assert.NotNull(client.Status);
 }
开发者ID:Therzok,项目名称:octokit.net,代码行数:5,代码来源:DeploymentsClientTests.cs


注:本文中的Octokit.DeploymentsClient类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。