~ubuntu-branches/ubuntu/precise/surefire/precise

« back to all changes in this revision

Viewing changes to surefire-providers/surefire-junit47/src/main/java/org/apache/maven/surefire/junitcore/SynchronousRunner.java

  • Committer: Bazaar Package Importer
  • Author(s): Miguel Landaeta
  • Date: 2011-10-10 20:42:16 UTC
  • mfrom: (2.2.4 sid)
  • Revision ID: james.westby@ubuntu.com-20111010204216-cemva69wkagf4fay
Tags: 2.10-1
* Team upload.
* New upstream release.
* Refresh and remove unneccesary patches.
* Add Build-Depends on libsurefire-java and
  libmaven-common-artifact-filters-java.
* Drop outdated Maven artifact surefire-junit.
* Provide new Maven artifacts: surefire-junit3, maven-surefire-common,
  common-junit3, common-junit4, surefire-junit47 and surefire-testng-utils.
* Fix clean target to allow "two in a row" builds.
* Update Vcs-Browser field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.apache.maven.surefire.junitcore;
 
2
 
 
3
import org.junit.runners.model.RunnerScheduler;
 
4
 
 
5
/**
 
6
* @author <a href="mailto:kristian@zenior.no">Kristian Rosenvold</a>
 
7
*/
 
8
class SynchronousRunner
 
9
    implements RunnerScheduler
 
10
{
 
11
    public void schedule( final Runnable childStatement )
 
12
    {
 
13
        childStatement.run();
 
14
    }
 
15
 
 
16
    public void finished()
 
17
    {
 
18
    }
 
19
}