Just a question about unit testing. How do you communicate that unit tests are passed. We started putting together libraries for some of our most used database functions. I'm trying to conduct unit testing for some of the stuff I'm adding. I'm curious what others do.
Is it in your guidelines for pushing to your repos that all tests must pass?
Is it part of your peer review to go over passed tests?
Do you put a comment in your code that the class or method passes.
Is it something else?
Usually the build server (Circle CI, Jenkins, etc) runs the unit tests on every push and rolls back the deployment if there's a failure. This way, everyone can see the status of the tests.