You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@turbine.apache.org by tv...@apache.org on 2010/06/28 19:20:32 UTC

svn commit: r958646 - /turbine/core/trunk/src/test/org/apache/turbine/test/BaseTurbineTest.java

Author: tv
Date: Mon Jun 28 17:20:32 2010
New Revision: 958646

URL: http://svn.apache.org/viewvc?rev=958646&view=rev
Log:
Make copied tests happy

Added:
    turbine/core/trunk/src/test/org/apache/turbine/test/BaseTurbineTest.java   (with props)

Added: turbine/core/trunk/src/test/org/apache/turbine/test/BaseTurbineTest.java
URL: http://svn.apache.org/viewvc/turbine/core/trunk/src/test/org/apache/turbine/test/BaseTurbineTest.java?rev=958646&view=auto
==============================================================================
--- turbine/core/trunk/src/test/org/apache/turbine/test/BaseTurbineTest.java (added)
+++ turbine/core/trunk/src/test/org/apache/turbine/test/BaseTurbineTest.java Mon Jun 28 17:20:32 2010
@@ -0,0 +1,56 @@
+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;
+
+/**
+ * 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 TurbineConfig turbineConfig = null;
+
+    public BaseTurbineTest(String name, String config)
+            throws Exception
+    {
+        super(name);
+
+        if (turbineConfig == null)
+        {
+            Map initParams = new HashMap();
+            initParams.put(TurbineConfig.PROPERTIES_PATH_KEY, config); // "conf/test/TurbineResources.properties"
+            initParams.put(TurbineConstants.LOGGING_ROOT_KEY, "target/test-logs");
+
+            turbineConfig = new TurbineConfig(".", initParams);
+            turbineConfig.initialize();
+        }
+    }
+}

Propchange: turbine/core/trunk/src/test/org/apache/turbine/test/BaseTurbineTest.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain