Add testcases for FeedbackResponseCommentsLogicTest
Add testcases for FeedbackResponseCommentsLogicTest
Changes
- Added testcases testing logic test
Hi @mingyuanc, please also write tests for the other methods in the logic class! Can mock the response from the db if you need
Hey @weiquu, if im not wrong the other methods are just pure function calls from the db class which should be covered in the test cases from the db class. Should I be testing those as well?
Hi @mingyuanc, please also write tests for the other methods in the logic class! Can mock the response from the db if you need
Hey @weiquu, if im not wrong the other methods are just pure function calls from the db class which should be covered in the test cases from the db class. Should I be testing those as well?
Yes please! Reason is that in the future we might edit the methods (eg to do some pre-processing before the db call), and if so we'll want the tests to be there to ensure that the method is correct