本文整理汇总了C#中TeamCityClient类的典型用法代码示例。如果您正苦于以下问题:C# TeamCityClient类的具体用法?C# TeamCityClient怎么用?C# TeamCityClient使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TeamCityClient类属于命名空间,在下文中一共展示了TeamCityClient类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: it_throws_exception_when_no_connection_formed
public void it_throws_exception_when_no_connection_formed()
{
var client = new TeamCityClient("teamcity.codebetter.com");
var builds = client.BuildConfigs.All();
//Assert: Exception
}
示例2: it_returns_exception_when_no_connection_formed
public void it_returns_exception_when_no_connection_formed()
{
var client = new TeamCityClient("localhost:81");
var vcsRoots = client.AllVcsRoots();
//Assert: Exception
}
示例3: it_throws_exception_when_no_connection_formed
public void it_throws_exception_when_no_connection_formed()
{
var client = new TeamCityClient("teamcity.codebetter.com");
var projects = client.AllProjects();
//Assert: Exception
}
示例4: it_throws_exception_when_no_connection_formed
public void it_throws_exception_when_no_connection_formed()
{
var client = new TeamCityClient("teamcity.codebetter.com");
var plugins = client.ServerInformation.AllPlugins();
//Assert: Exception
}
示例5: it_returns_exception_when_no_connection_formed
public void it_returns_exception_when_no_connection_formed()
{
var client = new TeamCityClient("teamcity.codebetter.com");
var vcsRoots = client.VcsRoots.All();
//Assert: Exception
}
示例6: it_returns_exception_when_no_connection_made
public void it_returns_exception_when_no_connection_made()
{
var client = new TeamCityClient("teamcity.codebetter.com");
var changes = client.AllChanges();
//Assert: Exception
}
示例7: it_throws_exception_when_no_connection_formed
public void it_throws_exception_when_no_connection_formed()
{
var client = new TeamCityClient("localhost:81");
var plugins = client.AllServerPlugins();
//Assert: Exception
}
示例8: it_throws_exception_when_no_client_connection_made
public void it_throws_exception_when_no_client_connection_made()
{
var client = new TeamCityClient("teamcity.codebetter.com");
var agents = client.AllAgents();
//Assert: Exception
}
示例9: it_returns_exception_when_no_connection_made
public void it_returns_exception_when_no_connection_made()
{
var client = new TeamCityClient("localhost:81");
var users = client.AllUsers();
//Assert: Exception
}
示例10: it_throws_exception_when_host_does_not_exist
public void it_throws_exception_when_host_does_not_exist()
{
var client = new TeamCityClient("test:81");
client.Connect("admin", "qwerty");
var allProjects = client.AllProjects();
//Assert: Exception
}
示例11: it_throws_exception_when_no_connection_formed
public void it_throws_exception_when_no_connection_formed()
{
var client = new TeamCityClient("teamcity.codebetter.com");
const string buildConfigId = "Release Build";
client.Builds.SuccessfulBuildsByBuildConfigId(buildConfigId);
//Assert: Exception
}
示例12: it_returns_subprojects_when_creating_project
public void it_returns_subprojects_when_creating_project()
{
var client = new TeamCityClient("localhost:81");
client.Connect("admin", "qwerty");
var projectName = Guid.NewGuid().ToString("N");
var project = client.Projects.Create(projectName);
Assert.That(project.Projects.Project, Is.Not.Null);
}
示例13: it_throws_exception_when_host_does_not_exist
public void it_throws_exception_when_host_does_not_exist()
{
var client = new TeamCityClient("test:81");
client.Connect("teamcitysharpuser", "qwerty");
var builds = client.BuildConfigs.All();
//Assert: Exception
}
示例14: it_throws_exception_when_host_does_not_exist
public void it_throws_exception_when_host_does_not_exist()
{
var client = new TeamCityClient("test:81");
client.Connect("admin", "qwerty");
var plugins = client.ServerInformation.AllPlugins();
//Assert: Exception
}
示例15: it_returns_exception_when_host_does_not_exist
public void it_returns_exception_when_host_does_not_exist()
{
var client = new TeamCityClient("test:81");
client.Connect("admin", "qwerty");
var vcsroots = client.AllVcsRoots();
//Assert: Exception
}