MCPcopy Index your code
hub / github.com/getsentry/XcodeBuildMCP / hasTestCounts

Function hasTestCounts

src/utils/xcodebuild-domain-results.ts:168–175  ·  view source on GitHub ↗
(state: XcodebuildRunState)

Source from the content-addressed store, hash-verified

166}
167
168function hasTestCounts(state: XcodebuildRunState): boolean {
169 return (
170 state.completedTests > 0 ||
171 state.failedTests > 0 ||
172 state.skippedTests > 0 ||
173 state.testFailures.length > 0
174 );
175}
176
177function createStateTestCounts(state: XcodebuildRunState): Counts | undefined {
178 if (!hasTestCounts(state)) {

Callers 1

createStateTestCountsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected