Template support for input parameters #4

Merged
javier merged 81 commits from feature/arguments-templating into main 2025-02-17 22:11:06 +00:00
2 changed files with 3 additions and 0 deletions
Showing only changes of commit 5f958c6f4c - Show all commits

View File

@ -2,6 +2,7 @@ enum Folder {
case app
case libraryPublic
case libraryInternal
case root
case testCasesPublic
case testCasesInternal
case testHelpers
@ -18,6 +19,7 @@ extension Folder {
case .app: "App/Sources"
case .libraryPublic: "Library/Sources/Public"
case .libraryInternal: "Library/Sources/Internal"
case .root: ""
case .testCasesPublic: "Test/Sources/Cases/Public"
case .testCasesInternal: "Test/Sources/Cases/Internal"
case .testHelpers: "Test/Sources/Helpers"

View File

@ -26,6 +26,7 @@ private extension FolderTests {
"App/Sources",
"Library/Sources/Public",
"Library/Sources/Internal",
"",
"Test/Sources/Cases/Public",
"Test/Sources/Cases/Internal",
"Test/Sources/Helpers"