lordrip commented on code in PR #18308: URL: https://github.com/apache/camel/pull/18308#discussion_r2132171633
########## dsl/camel-jbang/camel-jbang-core/src/test/java/org/apache/camel/dsl/jbang/core/commands/DependencyRuntimeTest.java: ########## @@ -0,0 +1,96 @@ +package org.apache.camel.dsl.jbang.core.commands; + +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.io.TempDir; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.Arguments; +import org.junit.jupiter.params.provider.MethodSource; + +import java.io.File; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.stream.Stream; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +class DependencyRuntimeTest extends CamelCommandBaseTest { + + @TempDir + File tempDir; + + DependencyRuntime command; + Path pomFilePath; + + private static Stream<Arguments> testOutputArguments() { + return Stream.of(Arguments.of(TestArguments.QUARKUS_POM, TestArguments.QUARKUS_POM_OUTPUT)); Review Comment: I still need to add more demo pom.xml files, but I wanted to gather feedback in the meantime. :pray: -- 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: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org