L3 test count scales with tier: small=10, medium=25, large=50
(tier)
| 552 | |
| 553 | /** L3 test count scales with tier: small=10, medium=25, large=50 */ |
| 554 | function l3TestCountFor(tier) { |
| 555 | return { small: 10, medium: 25, large: 50 }[tier] ?? 10; |
| 556 | } |
| 557 | |
| 558 | /** L3 requirement count scales with tier: small=8, medium=20, large=40 */ |
| 559 | function l3ReqCountFor(tier) { |
no outgoing calls
no test coverage detected