@Test(groups = {"dataset_service"}, dependsOnMethods = {"searchRead_Paginated"})
public void modelLoad() {
OpenERPJSONRPCClient server = new OpenERPJSONRPCClient(SERVER_URL+":"+SERVER_PORT);
JSONObject sessionInfo = server.sessionAuthenticate("openerp_jsonrpc_client", "admin", "admin", null, null);
// res.users, all fields, all objects(no domain), no sort, no context
JSONObject object = server.modelLoad("res.users", 1 , null);
System.out.println(object);
}
@Test(groups = {"dataset_service_callkw"}, dependsOnGroups = {"dataset_service"})
public void callkw_create_using_kwargs() {