- Login to GitHub or create an account.
- If you don't have a local JDK 21 installation + an IDE: create a new workspace at Gitpod. This usually takes a little while, just be patient.
- Open ApplicationTest from the file tree on the left. You should be able to execute the containing tests by clicking the green play button in the gutter.
Feel free to use the Cheat Sheet for inspiration.
-
Have a look at the ApplicationTest.
Brainstorm: Which problems do you see?
- Do you understand what's being tested?
- Is there a proper arrange, act, assert structure in the test cases?
- Are the names of test cases and variables consistent?
Does it help to understand implications of failures?
Does it help to find the corresponding code? - Do you understand how the test works technically?
- Do you see where the test data is coming from?
- Which code duplications do you find?
How would you reduce them? - Are the Test Code Quality Criteria applied?
-
Ensemble: Let's untangle it!
-
Have a look at the test at UnicornServiceTest, UnicornControllerTest and UnicornTest.
Brainstorm: Which problems do you see?
-
Which layer of the testing pyramid is this test on?
Is the layer appropriate for the test cases? Can we move tests here?
-