< prev index next >

test/compiler/types/correctness/execution/Execution.java

Print this page
rev 11557 : 8132919: use package in compiler tests
Reviewed-by: duke

*** 18,41 **** * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! package execution; ! import hierarchies.TypeHierarchy; ! import scenarios.Scenario; /** * Execution scenario represents test methods execution type. * @param <T> parameter type * @param <R> result Type */ public interface Execution<T extends TypeHierarchy.I, R> { /** * Executes the test code of the given scenario ! * See {@link scenarios.Scenario#run(T)} * * @param scenario test scenario */ void execute(Scenario<T, R> scenario); --- 18,41 ---- * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! package compiler.types.correctness.execution; ! import compiler.types.correctness.hierarchies.TypeHierarchy; ! import compiler.types.correctness.scenarios.Scenario; /** * Execution scenario represents test methods execution type. * @param <T> parameter type * @param <R> result Type */ public interface Execution<T extends TypeHierarchy.I, R> { /** * Executes the test code of the given scenario ! * See {@link Scenario#run(T)} * * @param scenario test scenario */ void execute(Scenario<T, R> scenario);
< prev index next >