* Test adding and getting a VRF
*/
@Test
public void addGetVrf() {
VRF vrf1, vrf2;
vrf1 = new VRF();
vrf1.rt = "123:456";
vrf1.name = "Test VRF #1";
vrf1.description = "A test VRF.";
try {
vrf1.save(this.connection);
vrf2 = VRF.get(this.connection, vrf1.id);
} catch (JnipapException e) {
fail("Operation resulted in exception " + e.getMessage());
return;
}