zstan commented on code in PR #3608: URL: https://github.com/apache/ignite-3/pull/3608#discussion_r1572417317
########## modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/exec/rel/ExecutionTest.java: ########## @@ -55,14 +57,16 @@ import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.Arguments; import org.junit.jupiter.params.provider.MethodSource; +import org.junit.jupiter.params.provider.ValueSource; /** * ExecutionTest. * TODO Documentation https://issues.apache.org/jira/browse/IGNITE-15859 */ public class ExecutionTest extends AbstractExecutionTest<Object[]> { - @Test - public void testSimpleExecution() { + @ParameterizedTest(name = "join algo : {0}") + @ValueSource(strings = {"NLJoin", "HashJoin"}) + public void testSimpleExecution(String joinImplementation) { Review Comment: i make some refactoring there -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
