An open API service indexing awesome lists of open source software.

https://github.com/jonathanmccormickjr/try-unittest


https://github.com/jonathanmccormickjr/try-unittest

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

        

# try-unittest

For me to get practice using `unittest`.

## Naming test functions

Remember to include `self`.

Remember to have `test` as the prefix for the test function names, otherwise they will not be included properly, as shown below:
![image](image.png)

Despite having 2 functions, only one has the prefix `test`, and so only one is included in the testing process.