FileDocCategorySizeDatePackage
ThreadedOutput.javaAPI DocApache Ant 1.701383Wed Dec 13 06:16:18 GMT 2006org.example.junit

ThreadedOutput

public class ThreadedOutput extends TestCase
Not really a test of Ant but a test that is run by the test of the junit task. Confused?
since
Ant 1.5

Fields Summary
Constructors Summary
public ThreadedOutput(String s)

        super(s);
    
Methods Summary
public voidtestOutput()

        Thread t = new Thread(new Runnable() {
                public void run() {
                    System.out.println("foo");
                }
            });
        t.start();
        t.join();