uk.co.thebadgerset.junit.extensions.example.SleepThrottleTestPerf Maven / Gradle / Ivy
Go to download
JUnit Toolkit enhances JUnit with performance testing, asymptotic behaviour analysis, and concurrency testing.
The newest version!
/*
* Copyright 2007 Rupert Smith.
*
* 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 uk.co.thebadgerset.junit.extensions.example;
import junit.framework.Test;
import junit.framework.TestSuite;
import uk.co.thebadgerset.junit.extensions.SleepThrottle;
import uk.co.thebadgerset.junit.extensions.Throttle;
/**
* Provides a {@link SleepThrottle} to test run with the accuracy tests in {@link ThrottleTestPerfBase}.
*
* CRC Card
* Responsibilities Collaborations
* Run accuracy tests on SleepThrottle {@link SleepThrottle}
*
*
* @author Rupert Smith
*/
public class SleepThrottleTestPerf extends ThrottleTestPerfBase
{
/**
* Creates a new named sleep throttle test.
*
* @param name The test name.
*/
public SleepThrottleTestPerf(String name)
{
super(name);
}
/**
* Compiles all the tests in this class into a suite.
*
* @return The test suite.
*/
public static Test suite()
{
// Build a new test suite
TestSuite suite = new TestSuite("SleepThrottle Tests");
suite.addTest(new SleepThrottleTestPerf("testThrottleAccuracy"));
return suite;
}
/**
* Generates the throttle for the abstract base class to test, in this case a {@link SleepThrottle}.
*
* @return A sleep throttle to test.
*/
public Throttle getTestThrottle()
{
return new SleepThrottle();
}
}