Skip to content

Commit

Permalink
Add logging of which test case is being executed
Browse files Browse the repository at this point in the history
  • Loading branch information
adamretter committed Mar 15, 2023
1 parent 7f03962 commit 0200ff6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/scala/org/exist/xqts/runner/XQTSRunnerActor.scala
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,11 @@ class XQTSRunnerActor(xmlParserBufferSize: Int, existServer: ExistServer, parser
}

case RunningTestCase(testSetRef, testCase) =>
logger.info(s"Starting execution of Test Case: ${testSetRef.name}/${testCase}...")
testCases = addTestCase(testCases, testSetRef, testCase)

case RanTestCase(testSetRef, testResult) =>
logger.info(s"Finished execution of Test Case: ${testSetRef.name}/${testResult.testCase}.")
completedTestCases = mergeTestCases(completedTestCases, testSetRef, testResult)

// have we completed testing an entire TestSet?
Expand Down

0 comments on commit 0200ff6

Please sign in to comment.