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

Function selectorMatches

src/utils/test-preflight.ts:324–330  ·  view source on GitHub ↗
(test: DiscoveredTestCase, selector: TestSelector)

Source from the content-addressed store, hash-verified

322}
323
324function selectorMatches(test: DiscoveredTestCase, selector: TestSelector): boolean {
325 return (
326 selector.target === test.targetName &&
327 (!selector.classOrSuite || selector.classOrSuite === test.typeName) &&
328 (!selector.method || selector.method === test.methodName)
329 );
330}
331
332function applySelectors(
333 files: DiscoveredTestFile[],

Callers 1

applySelectorsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected