i want to write code for unit test to test my application code. I have different methods and now want to test these methods one by one in python script. but i do not how to i write. can any one give me example of small code for unit testing in python. i am thankful
|
1
|
|
|
|
|
|
It's probably best to start off with the given
When you've become comfortable with
|
||
|
|
|
|
Here's an example and you might want to read a little more on pythons unit testing. |
||
|
|
|
|
Read the unit testing framework section of the Python Library Reference. A basic example from the documentation:
|
||
|
|
