Term
|
Definition
It is a method by which individual units of source code are tested to determine if they are fit for use. |
|
|
Term
|
Definition
It is the smallest testable part of an application. |
|
|
Term
What are some benefits of unit testing?
(Hint: 3) |
|
Definition
Facilitates changes, Simplifies integration, and Documentation. |
|
|
Term
|
Definition
A set of conditions to determine if a program is working correctly or not. |
|
|
Term
|
Definition
A mechanism for determining whether a program has passed or failed. |
|
|
Term
|
Definition
An open-source framework designed for writing and running test in Java. |
|
|
Term
What is the difference between JUnit 4.x and 3.x? |
|
Definition
4.x uses annotations, 3.x extends TestCase. |
|
|
Term
In JUnit, what annotation is used to declare a Test? |
|
Definition
|
|