சோதனை உத்தி என்பது ஒரு திட்டம் தரத்தை எவ்வாறு உறுதிசெய்கிறது என்பதை வரையறுக்கிறது — என்ன சோதனை செய்ய வேண்டும், எந்த நிலைகளில், எவ்வளவு, என்ன கருவிகள் மற்றும் செயல்முறைகளுடன். ஒரு நல்ல உத்தி முழுமையற்ற தன்மை மற்றும் செலவுக்கு ஏற்றவாறு சமநிலையை பராமரிக்கிறது, சோதனை முயற்சி அதிக மதிப்பை வழங்குவதில் கவனம் செலுத்துகிறது.
சோதனை உத்திக்கான கூறுகள்
✓ WHAT to test → critical functionality, risky/complex areas, core business logic
(prioritize by RISK and value — you can't test everything)
✓ LEVELS → the test pyramid: many unit, some integration, few E2E (balance coverage/cost)
✓ TYPES → functional + non-functional (performance, security) as needed
✓ TOOLS/frameworks → appropriate for the stack; CI integration
✓ PROCESS → when tests run (CI on every change), coverage expectations, who owns tests
✓ AUTOMATION vs manual → automate regression/repetitive; manual for exploratory/usability
