Test code should be maintained to the same standards of quality as their production code.
Focus on readability
Readability is even more important in unit tests than it is in production code.
What makes tests readable? The same thing that makes all code readable: clarity, simplicity, and density of expression. In a test, you want to say a lot with as few expressions as possible.
Every test function in a JUnit test should have one and only one assert statement.
@TestpublicvoidtestUserCRUD() {// GivenUserDto userDto1 =newUserDtoBuilder().setEmail("cleancode@gpcoder.com").setPassword("secret").build();// WhenUser user1 =userRepository.save(userDto1);// ThenassertNotNull(user1);// Do other assert statements ...// Given UserDto updatedUser1 =user1.setPassword("new secret").build();// When user1 =userRepository.update(user1);// ThenassertNotNull(user1);// Given long userId =1;// When boolean isDeleted =userRepository.delete(1);// ThenassertTrue(isDeleted);}
@TestpublicvoidgivenUser_WhenSave_ShouldSaveSuccessfully() {// GivenUserDto userDto1 =newUserDtoBuilder().setEmail("cleancode@gpcoder.com").setPassword("secret").build();// WhenUser user1 =userRepository.save(userDto1);// ThenassertNotNull(user1);}@TestpublicvoidgivenUser_WhenUpdate_ShouldUpdateSuccessfully() {// GivenUser user1 =newUserBuilder().id(1).setEmail("cleancode@gpcoder.com").setPassword("new secret").build();// When User user1 =userRepository.update(user1);// ThenassertNotNull(user1);}@TestpublicvoidgivenUserId_WhenDelete_ShouldDeleteSuccessfully() {// Given long userId =1;// When boolean isDeleted =userRepository.delete(1);// ThenassertTrue(isDeleted);}
The names of the functions should use the common given-when-then convention. This makes the tests even easier to read.
Use a single concept per test
Should minimize the number of asserts per concept and test just one concept per test function.
publicstaticfinalint MIN =10;publicstaticfinalint MAX =100;booleanisInRange(int value) {returnMIN<= value && value <= MAX;}@TestpublicvoidtestInRange() {assertFalse(isInRange(9));assertTrue(isInRange(10));assertTrue(isInRange(11));assertTrue(isInRange(99));assertTrue(isInRange(100));assertFalse(isInRange(101));}
You can split it into multiple test cases, e.g. test less than, equal to, greater than MIN/MAX value. However, you can minimize it as follows:
Follow five rules that form the acronym F.I.R.S.T.
Fast
Tests should be fast. They should run quickly. When tests run slow, you won’t want to run them frequently. If you don’t run them frequently, you won’t find problems early enough to fix them easily. You won’t feel as free to clean up the code. Eventually the code will begin to rot.
Independent
Tests should not depend on each other. One test should not set up the conditions for the next test. You should be able to run each test independently and run the tests in any order you like. When tests depend on each other, then the first one to fail causes a cascade of downstream failures, making diagnosis difficult and hiding downstream defects.
Repeatable
Tests should be repeatable in any environment. You should be able to run the tests in the production environment, in the QA environment, and on your laptop while riding home on the train without a network. If your tests aren’t repeatable in any environment, then you’ll always have an excuse for why they fail. You’ll also find yourself unable to run the tests when the environment isn’t available.
Self-Validating
The tests should have a boolean output. Either they pass or fail. You should not have to read through a log file to tell whether the tests pass. You should not have to manually compare two different text files to see whether the tests pass. If the tests aren’t self-validating, then failure can become subjective, and running the tests can require a long manual evaluation.
Timely
The tests need to be written in a timely fashion. Unit tests should be written just before the production code that makes them pass. If you write tests after the production code, then you may find the production code to be hard to test. You may decide that some production code is too hard to test. You may not design the production code to be testable.