/* * Copyright 2013 Robert von Burg <eitch@eitchnet.ch> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package li.strolch.persistence.impl.dao.test; import java.io.File; import org.junit.AfterClass; import org.junit.BeforeClass; import li.strolch.testbase.runtime.AbstractModelTest; import li.strolch.testbase.runtime.RuntimeMock; public class XmlTransactionalDaoTest extends AbstractModelTest { public static final String RUNTIME_PATH = "target/transactionalStrolchRuntime/"; //$NON-NLS-1$ public static final String CONFIG_SRC = "src/test/resources/transactionalruntime"; //$NON-NLS-1$ protected static RuntimeMock runtimeMock; @Override protected RuntimeMock getRuntimeMock() { return runtimeMock; } @BeforeClass public static void beforeClass() { File rootPath = new File(RUNTIME_PATH); File configSrc = new File(CONFIG_SRC); runtimeMock = new RuntimeMock(); runtimeMock.mockRuntime(rootPath, configSrc); runtimeMock.startContainer(); } @AfterClass public static void afterClass() { runtimeMock.destroyRuntime(); } }