Examples of databaseDrop()


Examples of fr.inouk.OpenERPJSONRPCClient.databaseDrop()

        ArrayList<String> dbList = server.databaseGetList(null);
        if( ! dbList.contains("openerp_jsonrpc_client") )
            Assert.fail("Database openerp_jsonrpc_client do not exists !");

        boolean result = server.databaseDrop(MASTER_ADMIN_PASSWORD, "openerp_jsonrpc_client", null);
        System.out.println("databaseDrop() => " + result);
    }

    @Test(groups = {"database"}, dependsOnMethods = {"databaseDrop"}, alwaysRun = true)
    public void databaseCreate() {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.