Package com.microtripit.mandrillapp.lutung.view

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


  @Test
  public final void testInfo() throws IOException, MandrillApiError {
    final MandrillWebhook[] webhooks = mandrillApi.webhooks().list();
    Assert.assertNotNull(webhooks);
    if(webhooks.length > 0) {
      final MandrillWebhook w = mandrillApi.webhooks().info(
          webhooks[0].getId());
      Assert.assertNotNull(w);
      Assert.assertEquals(webhooks[0].getId(), w.getId());
    }
  }
View Full Code Here

TOP

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

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.