001    package ps2.test;
002    
003    import org.junit.runner.RunWith;
004    import org.junit.runners.Suite;
005    import org.junit.runners.Suite.SuiteClasses;
006    
007    /**
008     * SpecificationTests is a simple TestSuite that includes and runs all
009     * the tests in {@link GeoPointTest}, {@link GeoSegmentTest}, {@link
010     * GeoFeatureTest}, {@link RouteTest}, {@link
011     * WalkingRouteFormatterTest}, and {@link DrivingRouteFormatterTest}.
012     **/
013    @RunWith(Suite.class)
014    @SuiteClasses({ GeoPointTest.class,
015                    GeoSegmentTest.class,
016                    GeoFeatureTest.class,
017                    RouteTest.class,
018                    WalkingRouteFormatterTest.class,
019                    DrivingRouteFormatterTest.class })
020    
021    public final class SpecificationTests
022    {
023        //this class is a placeholder for the suite, so it has no members.
024    }
025