org.apache.jmeter.junit
abstract public class: JMeterTestCase [javadoc |
source]
java.lang.Object
junit.framework.TestCase
org.apache.jmeter.junit.JMeterTestCase
Direct Known Subclasses:
JMeterTest, UrlConfigTest, TestConfigurationTree, XMLSchemaAssertionTest, PackageTest, Test, TestSaveService, PackageTest, HtmlParserTester, TestLoad
- author:
ano
- ano
To change the template for this generated type comment go to
Window>Preferences>Java>Code Generation>Code and Comments
Field Summary |
---|
protected static final Logger | testLog | |
Method from org.apache.jmeter.junit.JMeterTestCase Summary: |
---|
findTestFile |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from org.apache.jmeter.junit.JMeterTestCase Detail: |
protected static File findTestFile(String file) {
File f = new File(file);
if (filePrefix.length() > 0 && !f.isAbsolute()) {
f = new File(filePrefix + file);// Add the offset
}
return f;
}
|