/**
* Helper to retrieve the namespace of the org stored in the current test context.
* @return String containing the namespace
*/
public static String getNamespaceFromCtx() throws ConnectionException {
UserInfo info = TestContext.get().getUserInfo();
ForceConnectorConfig config = new ForceConnectorConfig();
config.setAuthEndpoint(info.getServerEndpoint());
config.setUsername(info.getUserName());
config.setPassword(info.getPassword());
ForceServiceConnector connector = new ForceServiceConnector(config);
return connector.getNamespace();
}