Testing in Java =============== .. index:: ! automated testing, ! unit testing, ! JUnit, !JUnit4 You already recognize the importance of testing your code. **Automated testing** in Java, like any language, ensures that your code works as expected, every time it runs. Tests also function as documentation, giving an observer instructions on how to properly execute your classes and methods. This course covers **unit testing** in Java with a test runner called **JUnit4**. Unit testing breaks down the codebase into its smallest building blocks, which are individual statements and methods. .. tip:: If you're not yet familiar with the benefits of automated testing, you can familiarize yourself `here `__. Why We Test ----------- .. index:: ! refactor Refactoring ^^^^^^^^^^^ Because they work on the most basic functionality of your code, unit tests safeguard against bugs introduced in **refactoring**. Refactoring refers to the process of rewriting code without adding new features. Imagine this common workflow: #. You practice TDD, writing your tests to stipulate your class's code. #. You write your code to pass your tests. #. Later, a stakeholder in your project's use requests that you refactor your code using different syntax. The features will be the same, but the implementation changes. Unit tests help in this scenario in that, changes to implementation should not require changes to outcome. Thus, if your tests continue to pass after the refactor, you can move on, knowing you have not inadvertently introduced a bug. When you write tests once, they provide a code lifetime's worth of benefits. Documentation ^^^^^^^^^^^^^ Unit tests are the most enlightened form of documentation. Again, because they address the most fundamental tasks of your classes, unit tests serve as live-code use-cases. You may also have an external documentation directory with examples of how to run your project, or perhaps you have been writing comments within your code to best communicate with your teammates about your changes. Both of these are great choices and should be done when possible. However, they also require more forethought to maintain. Each time you update your code, you might not remember to update the documentation and comments. With unit testing, however, you have a more obvious reminder that a change has been made if a test fails. .. _testing-best-practices: Testing Best Practices ---------------------- Below are some best practices to keep in mind when writing unit tests, in any language. #. The AAAs The AAAs of unit testing refers to the pattern to follow when writing your unit tests. a. Arrange the variables your test requires b. Act on the methods your test requires c. Assert the anticipated comparison of the expected and actual values #. Deterministic Every, single, solitary time a test is run, it should produce the same outcome. A test that passes only most of the time is a worthless test. #. Relevant Tests, as they are written, should be grouped by related class and function. #. Meaningful There is no need to test trivial code. For example, unless they contain additional functionality, there is no need to write tests for getters and setters. Your IntelliJ IDE offers code completion for these anyway. Check Your Understanding ------------------------ .. admonition:: Question True or False: Comments are the best tool to make your code readable. .. ans: False, comments are helpful but can be used in tandem with other forms of documentation, including unit tests .. admonition:: Question Unit tests are a form of: #. Manual testing #. Automated testing #. Integration testing #. Documentation testing .. ans: Automated testing