FionaYYX / CSC207_Group199

CSC207 Project: Fiona Xu, Shujian Zhu, Reeshav Kumar, Gabe Payumo, Shizhuo Liao
0 stars 4 forks source link

Tips for writing tests #60

Open emmLiao opened 1 year ago

emmLiao commented 1 year ago

Do test if the expected output of a method matches the actual one. Do test whether the function calls made inside the method are occurring the desired number of times. Do not try to test code that is not a part of the method under test. Do not make API calls, database connections, or network requests while writing your tests.

reference https://www.freecodecamp.org/news/java-unit-testing/