com.xceptance.xlt.engine.junit.JavaTestCaseRunner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xlt Show documentation
Show all versions of xlt Show documentation
XLT (Xceptance LoadTest) is an extensive load and performance test tool developed and maintained by Xceptance.
/*
* Copyright (c) 2005-2024 Xceptance Software Technologies GmbH
*
* 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 com.xceptance.xlt.engine.junit;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import org.junit.runner.RunWith;
import org.junit.runner.Runner;
import com.xceptance.xlt.api.data.DataSetProvider;
/**
* A JUnit {@link Runner} implementation for arbitrary Java test cases. This runner runs a certain test case possibly
* multiple times if there is a {@link DataSetProvider} with more than one data set (data-driven test). To use this
* runner, annotate your JUnit test class with this class using {@link RunWith}.
*/
public class JavaTestCaseRunner extends AbstractTestCaseRunner
{
/**
* The list of directories to be searched for data set files.
*/
private static final List dataSetFileDirs = new ArrayList();
static
{
// 1. the current directory
dataSetFileDirs.add(CURRENT_DIR);
// 2. the data sets directory if available
if (DATA_SETS_DIR != null)
{
dataSetFileDirs.add(DATA_SETS_DIR);
}
}
/**
* Constructor. Only called reflectively from a JUnit runtime environment. Do not use programmatically.
*
* @param testCaseClass
* the test case class
*/
public JavaTestCaseRunner(final Class> testCaseClass) throws Throwable
{
super(testCaseClass, testCaseClass.getName(), null, dataSetFileDirs);
}
}