* Test adding and getting a prefix
*/
@Test
public void addGetPrefix() {
Prefix prefix1, prefix2;
prefix1 = new Prefix();
prefix1.prefix = "192.168.0.0/16";
prefix1.type = "reservation";
prefix1.description = "RFC1918 class B block";
try {
prefix1.save(this.connection);
prefix2 = Prefix.get(this.connection, prefix1.id);
} catch (JnipapException e) {
fail("Operation resulted in " + e.getClass().getName() + " with message \"" + e.getMessage() + "\"");
return;
}