package org.testng.internal.thread; /** * Reduced interface to mimic Future. * * @author Alexandru Popescu */ public interface IFutureResult { Object get() throws InterruptedException, ThreadExecutionException; }