|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Test | |
net.sf.jbenchmark | Introduction |
net.sf.jbenchmark.sql | Contains classes that interact with the java.sql packages of java and deal with database specific tasks. |
net.sf.jbenchmark.util | Contains utilities that are useful throughout the project. |
Uses of Test in net.sf.jbenchmark |
Subclasses of Test in net.sf.jbenchmark | |
class |
ChoiceTest
A weighted test group. |
class |
ChooseRandom
A test that selects a random test to execute from its children. |
class |
ChooseRandomItemTest
A test group that chooses a random item from a list. |
class |
FixedDelay
A fixed delay. |
class |
FixedThroughputTest
A test that adds delays to ensure a constant throughput. |
class |
ForEachTest
A test group that executes once for each item in a list. |
class |
HttpGetTest
A test that fetches performs a GET of a particular URI. |
class |
HttpLogPlayerTest
Http Log Player test will execute http gets from the specified log file File - http log file this attribute |
class |
HttpSessionTest
Test a number of http requests for a single session. |
class |
ParallelTestGroup
A test group that executes each of its tests in a separate thread. |
class |
RandomHttpGet
Randomly Http Get using set items list. |
class |
TestGroup
A test that runs a sequence of tests. |
class |
TestLoop
A test that runs another test multiple times. |
class |
TestLoopDuration
Loops for a constant amount of time. |
class |
TestThreadGroup
A test that runs a test in several threads. |
class |
WebPageTestGroup
A basic test that performs an HTTP get on a single URL, using multiple threads, for a fixed duration. |
Methods in net.sf.jbenchmark that return Test | |
Test |
TestResult.getTest()
Gets the test. |
Methods in net.sf.jbenchmark with parameters of type Test | |
void |
TestLogger.testStart(Test test)
Called when a test starts. |
void |
TestLogger.testFailed(Test test,
java.lang.Throwable throwable)
Called when a test fails. |
void |
TestTimer.testStart(Test test)
Called when a test starts. |
void |
TestTimer.testFailed(Test test,
java.lang.Throwable throwable)
Called when a test fails. |
void |
TestGroup.addTest(Test test)
Adds a test. |
void |
TestGroup.testStart(Test test)
Called when a test starts. |
void |
TestGroup.testFailed(Test test,
java.lang.Throwable throwable)
Called when a test fails. |
void |
TopLevelContext.testStart(Test test)
Called when a test starts. |
void |
TopLevelContext.testFailed(Test test,
java.lang.Throwable throwable)
Called when a test fails. |
void |
TestListener.testStart(Test test)
Called when a test starts. |
void |
TestListener.testFailed(Test test,
java.lang.Throwable throwable)
Called when a test fails. |
void |
TestResult.setTest(Test test)
Sets the test. |
Constructors in net.sf.jbenchmark with parameters of type Test | |
HttpTestResult(Test test,
int statusCode,
long responseSize,
long getTime)
Creates a HttpTestResult. |
|
TestResult(Test test,
long duration)
Create a test result for the given test that specifies the duration of that test. |
Uses of Test in net.sf.jbenchmark.sql |
Subclasses of Test in net.sf.jbenchmark.sql | |
class |
AbstractSQLCallTest
Anything associated with a benchmark test for DB interactions can extend this class. |
class |
SQLQueryTest
A benchmark test for running queries. |
class |
StoredProcedureTest
Encapsulates a single test that executes a stored procedure. |
Uses of Test in net.sf.jbenchmark.util |
Methods in net.sf.jbenchmark.util with parameters of type Test | |
void |
BasicTestStatistics.testStart(Test test)
When a test is started, we don't need to monitor anything. |
void |
BasicTestStatistics.testFailed(Test test,
java.lang.Throwable throwable)
For this we want to count the numnber of test failures. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |