Unit Testing Flashcards
It is the process of testing individual software units or components to ensure they function as expected.
Unit Testing
A type of unit testing that uses step-by-step test execution
Manual Testing
A type of unit testing is less common due to efficiency concerns
Manual Testing
A type of unit testing that uses unit test frameworks
Automated Testing
A type of unit testing that developers write test cases before deploying code.
Automated Testing
A unit testing technique that focuses on inputs and expected outputs (e.g., user interface testing)
Black Box Testing
A unit testing technique that examines internal logic and structure (e.g., path testing)
White Box Testing
A unit testing technique that combines both approaches for broader test coverage
Gray Box Testing
A Code Coverage Technique that ensures each line is executed
Statement Coverage
A Code Coverage Technique that tests all decision points
Decision Coverage
A Code Coverage Technique that ensures all possible branches in control structures are executed
Branch Coverage
A Code Coverage Technique that tests all possible logical conditions
Condition Coverage
A Code Coverage Technique that validates different states and transitions
Finite State Machine Coverage
They simulate real dependencies in unit tests
Mock Objects