Question
What is a functional test?(1 point) Responses a set of instructions executed to verify a particular artifact a set of instructions executed to verify a particular artifact a test that checks individual units of code a test that checks individual units of code a test that checks a specific feature within a program a test that checks a specific feature within a program a test that checks the logically integrated modules
Answers
GPT-4o mini
A functional test is **a test that checks a specific feature within a program**. It verifies that the software functions as intended according to the specified requirements.
What is the difference between unit tests and integration tests?(1 point) Responses Unit tests are automated, whereas integration tests are done manually. Unit tests are automated, whereas integration tests are done manually. In unit tests, all modules are combined and checked, whereas, in integration tests each module is checked independently. In unit tests, all modules are combined and checked, whereas, in integration tests each module is checked independently. In unit tests, each module is checked independently, whereas, in integration tests, all modules are combined and checked. In unit tests, each module is checked independently, whereas, in integration tests, all modules are combined and checked. Unit tests are done manually, whereas integration tests are automated.
GPT-4o mini
The correct difference is: **In unit tests, each module is checked independently, whereas, in integration tests, all modules are combined and checked.**
Unit tests focus on verifying the functionality of individual components, while integration tests evaluate how those components work together when combined.
Unit tests focus on verifying the functionality of individual components, while integration tests evaluate how those components work together when combined.