當前位置: 首頁>>代碼示例>>C#>>正文


C# DeploymentsClient.Create方法代碼示例

本文整理匯總了C#中Octokit.DeploymentsClient.Create方法的典型用法代碼示例。如果您正苦於以下問題:C# DeploymentsClient.Create方法的具體用法?C# DeploymentsClient.Create怎麽用?C# DeploymentsClient.Create使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Octokit.DeploymentsClient的用法示例。


在下文中一共展示了DeploymentsClient.Create方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的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: 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

示例3: UsesPreviewAcceptsHeader

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

            client.Create("owner", "name", newDeployment);
            connection.Received().Post<Deployment>(Arg.Any<Uri>(),
                                                      Arg.Any<NewDeployment>(),
                                                      Arg.Is(ExpectedAcceptHeader));
        }
開發者ID:Therzok,項目名稱:octokit.net,代碼行數:10,代碼來源:DeploymentsClientTests.cs

示例4: PassesNewDeploymentRequest

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

            client.Create("owner", "name", newDeployment);

            connection.Received(1).Post<Deployment>(Arg.Any<Uri>(),
                                                    newDeployment,
                                                    Arg.Any<string>());
        }
開發者ID:Therzok,項目名稱:octokit.net,代碼行數:11,代碼來源:DeploymentsClientTests.cs

示例5: PostsToDeploymentsUrl

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

            client.Create("owner", "name", newDeployment);

            connection.Received(1).Post<Deployment>(Arg.Is<Uri>(u => u.ToString() == expectedUrl),
                                                    Arg.Any<NewDeployment>(),
                                                    Arg.Any<string>());
        }
開發者ID:Therzok,項目名稱:octokit.net,代碼行數:12,代碼來源:DeploymentsClientTests.cs

示例6: EnsuresNonWhitespaceArguments

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

            Assert.Throws<ArgumentException>(() => client.Create(whitespace, "name", newDeployment));
            Assert.Throws<ArgumentException>(() => client.Create("owner", whitespace, newDeployment));
        }
開發者ID:Therzok,項目名稱:octokit.net,代碼行數:7,代碼來源:DeploymentsClientTests.cs

示例7: SendsPreviewAcceptHeaders

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

            client.Create("owner", "name", newDeployment);

            connection.Received(1).Post<Deployment>(Arg.Any<Uri>(),
                                                    Arg.Any<NewDeployment>(),
                                                    Arg.Is<string>(s => s == AcceptHeaders.DeploymentApiPreview));
        }
開發者ID:RadicalLove,項目名稱:octokit.net,代碼行數:11,代碼來源:DeploymentsClientTests.cs

示例8: PostsToDeploymentsUrlWithRepositoryId

        public void PostsToDeploymentsUrlWithRepositoryId()
        {
            var connection = Substitute.For<IApiConnection>();
            var client = new DeploymentsClient(connection);
            var expectedUrl = "repositories/1/deployments";

            client.Create(1, newDeployment);

            connection.Received(1).Post<Deployment>(Arg.Is<Uri>(uri => uri.ToString() == expectedUrl),
                                                    newDeployment);
        }
開發者ID:rlugojr,項目名稱:octokit.net,代碼行數:11,代碼來源:DeploymentsClientTests.cs

示例9: PostsToDeploymentsUrl

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

            client.Create("owner", "name", newDeployment);

            connection.Received(1).Post<Deployment>(Arg.Is<Uri>(u => u.ToString() == expectedUrl),
                                                    newDeployment,
                                                    "application/vnd.github.ant-man-preview+json");
        }
開發者ID:rlugojr,項目名稱:octokit.net,代碼行數:12,代碼來源:DeploymentsClientTests.cs


注:本文中的Octokit.DeploymentsClient.Create方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。