teamcity: add missing test count output

This commit is contained in:
Sandro Gehri
2023-03-29 00:03:14 +02:00
parent ba87e1fde8
commit cd8d94780f
5 changed files with 28 additions and 0 deletions

View File

@ -166,6 +166,14 @@ final class Converter
return $this->toRelativePath($path);
}
/**
* Gets the test suite size.
*/
public function getTestSuiteSize(TestSuite $testSuite): int
{
return $testSuite->count();
}
/**
* Transforms the given path in relative path.
*/