📖 What is Component Testing?
Component Testing, also known as unit testing, focuses on individual software modules or components that are independently testable. It primarily aims to verify functional behavior, performance, and robustness at the lowest level.
"In Agile or iterative models, component testing is typically done by developers using a test-driven development (TDD) approach."
📚 Certification: Certified Tester Foundation Level (CTFL-v4.0)
🔑 What are the Key Concepts of Component Testing?
- ▸ Focuses on individual, independently testable modules.
- ▸ Also known as unit or module testing.
- ▸ Often performed by developers.
🎯 How does Component Testing appear on the CTFL-v4.0 Exam?
Identifying the lowest test level in the SDLC.
Choosing the test level where test-driven development (TDD) is primarily applied.
❓ Frequently Asked Questions
Is component testing only for functions?
No, it can also check performance and robustness of the component.
Who typically performs component testing?
Developers usually perform it.