File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
src/main/java/io/openapiprocessor/api/v2 Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright 2024 https://github.com/openapi-processor/openapi-processor-test
3+ * PDX-License-Identifier: Apache-2.0
4+ */
5+
6+ package io .openapiprocessor .api .v2 ;
7+
8+ /**
9+ * (integration) test support.
10+ * provides the destination folders in the targetDir depending on the targetDir layout.
11+ */
12+ public interface OpenApiProcessorTest {
13+ /**
14+ * provides the target source root folder in targetDir.
15+ *
16+ * @return the source root below the targetDir or null if the targetDir is the source root.
17+ */
18+ String getSourceRoot ();
19+
20+ /**
21+ * provides the target resource root folder in targetDir.
22+ *
23+ * @return the resource root below the targetDir or null.
24+ */
25+ String getResourceRoot ();
26+ }
You can’t perform that action at this time.
0 commit comments