/** Check the media type of this extension class */
  public void testMediaTypeIsHtml() {
    AdminList ext = new AdminList();

    assertTrue(
        "The media type of this extension should be html",
        ext.getMediaType().equals(MEDIA_TYPE.html));
  }