Skip to content

Commit

Permalink
Added arg names to script calls
Browse files Browse the repository at this point in the history
  • Loading branch information
Rd4dev committed Jun 29, 2024
1 parent 4f5d47c commit 69d4583
Showing 1 changed file with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ class RunCoverageTest {
exemptedFilePath,
ReportFormat.MARKDOWN,
sampleMDOutputPath,
commandExecutor,
commandExecutor = commandExecutor,
scriptBgDispatcher
).execute()

Expand Down Expand Up @@ -445,12 +445,12 @@ class RunCoverageTest {
)*/

RunCoverage(
"${tempFolder.root}",
"coverage/main/java/com/example/TwoSum.kt",
ReportFormat.MARKDOWN,
sampleMDOutputPath,
commandExecutor,
scriptBgDispatcher
repoRoot = "${tempFolder.root}",
filePath = "coverage/main/java/com/example/TwoSum.kt",
reportFormat = ReportFormat.MARKDOWN,
reportOutputPath = sampleMDOutputPath,
commandExecutor = commandExecutor,
scriptBgDispatcher = scriptBgDispatcher
).execute()

val outputReportText = File(sampleMDOutputPath).readText()
Expand Down Expand Up @@ -521,7 +521,7 @@ class RunCoverageTest {
"scripts/java/com/example/TwoSum.kt",
ReportFormat.MARKDOWN,
sampleMDOutputPath,
commandExecutor,
commandExecutor = commandExecutor,
scriptBgDispatcher
).execute()

Expand Down Expand Up @@ -593,7 +593,7 @@ class RunCoverageTest {
"app/main/java/com/example/TwoSum.kt",
ReportFormat.MARKDOWN,
sampleMDOutputPath,
commandExecutor,
commandExecutor = commandExecutor,
scriptBgDispatcher
).execute()

Expand Down Expand Up @@ -665,7 +665,7 @@ class RunCoverageTest {
"app/main/java/com/example/TwoSum.kt",
ReportFormat.MARKDOWN,
sampleMDOutputPath,
commandExecutor,
commandExecutor = commandExecutor,
scriptBgDispatcher
).execute()

Expand Down Expand Up @@ -737,7 +737,7 @@ class RunCoverageTest {
"app/main/java/com/example/TwoSum.kt",
ReportFormat.MARKDOWN,
sampleMDOutputPath,
commandExecutor,
commandExecutor = commandExecutor,
scriptBgDispatcher
).execute()

Expand Down Expand Up @@ -826,7 +826,7 @@ class RunCoverageTest {
"app/main/java/com/example/TwoSum.kt",
ReportFormat.MARKDOWN,
sampleMDOutputPath,
commandExecutor,
commandExecutor = commandExecutor,
scriptBgDispatcher
).execute()

Expand Down Expand Up @@ -898,7 +898,7 @@ class RunCoverageTest {
"coverage/main/java/com/example/TwoSum.kt",
ReportFormat.HTML,
sampleHTMLOutputPath,
commandExecutor,
commandExecutor = commandExecutor,
scriptBgDispatcher
).execute()

Expand Down Expand Up @@ -1139,7 +1139,7 @@ class RunCoverageTest {
"scripts/java/com/example/TwoSum.kt",
ReportFormat.HTML,
sampleHTMLOutputPath,
commandExecutor,
commandExecutor = commandExecutor,
scriptBgDispatcher
).execute()

Expand Down Expand Up @@ -1380,7 +1380,7 @@ class RunCoverageTest {
"app/main/java/com/example/TwoSum.kt",
ReportFormat.HTML,
sampleHTMLOutputPath,
commandExecutor,
commandExecutor = commandExecutor,
scriptBgDispatcher
).execute()

Expand Down Expand Up @@ -1621,7 +1621,7 @@ class RunCoverageTest {
"app/main/java/com/example/TwoSum.kt",
ReportFormat.HTML,
sampleHTMLOutputPath,
commandExecutor,
commandExecutor = commandExecutor,
scriptBgDispatcher
).execute()

Expand Down Expand Up @@ -1862,7 +1862,7 @@ class RunCoverageTest {
"app/main/java/com/example/TwoSum.kt",
ReportFormat.HTML,
sampleHTMLOutputPath,
commandExecutor,
commandExecutor = commandExecutor,
scriptBgDispatcher
).execute()

Expand Down Expand Up @@ -2120,7 +2120,7 @@ class RunCoverageTest {
"app/main/java/com/example/TwoSum.kt",
ReportFormat.HTML,
sampleHTMLOutputPath,
commandExecutor,
commandExecutor = commandExecutor,
scriptBgDispatcher
).execute()

Expand Down

0 comments on commit 69d4583

Please sign in to comment.