Package com.microtripit.mandrillapp.lutung.view

Examples of com.microtripit.mandrillapp.lutung.view.MandrillUserInfo


*/
public final class MandrillUsersApiTest extends MandrillTestCase {
 
  @Test
  public final void testInfo() throws IOException, MandrillApiError {
    final MandrillUserInfo userInfo = mandrillApi.users().info();
    Assert.assertNotNull(userInfo);
    Assert.assertNotNull(userInfo.getPublicId());
    Assert.assertNotNull(userInfo.getUsername());
    Assert.assertNotNull(userInfo.getCreatedAt());
    Assert.assertTrue(userInfo.getReputation() >= 0);
    Assert.assertTrue(userInfo.getReputation() <= 100);
    Assert.assertTrue(userInfo.getHourlyQuota() >= 0);
    Assert.assertNotNull(userInfo.getStats());
  }
View Full Code Here

TOP

Related Classes of com.microtripit.mandrillapp.lutung.view.MandrillUserInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.