blob: 1be697e7fd0d047e121790b6347b1a5ab439db3a [file] [log] [blame]
package org.apache.turbine.test;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
import java.util.HashMap;
import java.util.Map;
import org.apache.turbine.TurbineConstants;
import org.apache.turbine.util.TurbineConfig;
import org.junit.BeforeClass;
/**
* A base class to implement tests that need a running
* Turbine framework on it.
*
* @author <a href="mailto:hps@intermeta.de">Henning P. Schmiedehausen</a>
* @version $Id: BaseTurbineTest.java 534527 2007-05-02 16:10:59Z tv $
*/
public abstract class BaseTurbineTest
extends BaseTestCase
{
private static volatile TurbineConfig turbineConfig = null;
@BeforeClass
public static void turbineInit(String config) throws Exception
{
if (turbineConfig == null)
{
Map<String, String> initParams = new HashMap<>();
initParams.put(TurbineConfig.PROPERTIES_PATH_KEY, config); // "conf/test/TurbineResources.properties"
initParams.put(TurbineConstants.LOGGING_ROOT_KEY, "target/test-logs");
TurbineConfig _turbineConfig = new TurbineConfig(".", initParams);
_turbineConfig.initialize();
turbineConfig = _turbineConfig;
}
}
}