@Test(expected=MandrillApiError.class)
public final void testSendTemplate01() throws IOException, MandrillApiError {
final HashMap<String,String> templateContent =
new HashMap<String,String>();
templateContent.put("test", "value");
final MandrillMessage message = new MandrillMessage();
mandrillApi.messages().sendTemplate(null, templateContent, message, null);
Assert.fail();
}