Beispiel #1
0
 //[Test]
 public void BitbucketService_GetPrivateCommits()
 {
     var service = new BitbucketService(new ProviderConfigurationElement {
         Owner = "secret", UserName = "******", Password = "******"
     });
     string json = service.GetCommits("secret", "master");
 }
Beispiel #2
0
 public void BitbucketService_GetPublicCommits()
 {
     var service = new BitbucketService(new ProviderConfigurationElement {
         Owner = "stanbpublic"
     });
     string json = service.GetCommits("testrepo", "master");
 }