package org.simantics.db.testing.base; /******************************************************************************* * Copyright (c) 2007, 2010 Association for Decentralized Information Management * in Industry THTH ry. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * VTT Technical Research Centre of Finland - initial API and implementation *******************************************************************************/ import org.junit.Before; import org.simantics.db.testing.impl.Configuration; /** * Base class for Simantics Test Cases. Starts ProCore at the beginning of the tests and closes it after tests are done. * * @author Marko Luukkainen * */ @Deprecated public class TestCleanDb extends ExistingDatabaseTest { private static final String USERNAME = Configuration.get().username; private static final String PASSWORD = Configuration.get().password; private final String WORK_DIR = "cleanDb"; @Before public void setUp() throws Exception { // CoreHandler.initDb(WORK_DIR); // core = new CoreHandler(); // Session s = core.launch(WORK_DIR, USERNAME, PASSWORD, null); super.setUp(); } }