コード例 #1
0
 public void AccountIsAuthorized_WithValidAccount_ShouldReturnTrue()
 {
     Assert.That(client.AccountIsAuthorized(), Is.True);
 }
コード例 #2
0
        public void AccountIsAuthorized_WithInvalidSubdomain_ShouldReturnFalse()
        {
            var testClient = new LitmusApi(new Account(LitmusInfo.Subdomain + "XZXZXZXZX", LitmusInfo.User, LitmusInfo.Pass));

            Assert.That(testClient.AccountIsAuthorized(), Is.False);
        }
コード例 #3
0
 public void AccountIsAuthorized_WithInvalidSubdomain_ShouldReturnFalse()
 {
     var testClient = new LitmusApi(new Account(LitmusInfo.Subdomain + "XZXZXZXZX", LitmusInfo.User, LitmusInfo.Pass));
     Assert.That(testClient.AccountIsAuthorized(), Is.False);
 }