* @throws Exception if any error occurs
*/
@Test
public void testGetDefaultProtocol() throws Exception {
ProtocolDescription protocolDescription = instance.getDefaultProtocol();
assertNotNull("Method returned null result.", protocolDescription);
assertEquals("The returned protocol has invalid name.", "Local", protocolDescription.getName());
}