本文整理汇总了C#中TeamCityClient.AllUsers方法的典型用法代码示例。如果您正苦于以下问题:C# TeamCityClient.AllUsers方法的具体用法?C# TeamCityClient.AllUsers怎么用?C# TeamCityClient.AllUsers使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TeamCityClient
的用法示例。
在下文中一共展示了TeamCityClient.AllUsers方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: 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
}
示例2: 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 users = client.AllUsers();
//Assert: Exception
}
示例3: it_should_throw_exception_when_forbidden_status_code_returned
public void it_should_throw_exception_when_forbidden_status_code_returned()
{
var client = new TeamCityClient("localhost:81");
client.Connect("guest", string.Empty, true);
var users = client.AllUsers();
//assert: Throws exception
}