All Downloads are FREE. Search and download functionalities are using the official Maven repository.

testimport.TestRunnable Maven / Gradle / Ivy

package testimport;

import byteman.tests.Test;

public class TestRunnable implements Runnable
{
    private final Test ti;

    public TestRunnable(Test ti)
    {
        this.ti = ti;
    }

    public void run()
    {
        ti.log("Runnable.run");
    }

    public void log(String msg)
    {
        ti.log(msg);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy