* Has <b>OK</b> status if description returned by the method
* is equal to expected one.
*/
public void _getDescription() {
String protocol = (String)args[1]; // args[1] - protocol
XConnection xConnection = (XConnection)args[2]; // args[2] - connection
// expected description is protocol + ":" + xConnection.getDescription()
String expectedDescription =
protocol + ":" + xConnection.getDescription();
String description = oObj.getDescription();
if (!tRes.tested("getDescription()",
description.equals(expectedDescription))) {