Metadata-Version: 2.1
Name: PySimpleTest
Version: 1.0.2
Summary: A very simple python test framework
Home-page: https://github.com/Time-Coder/PySimpleTest
Author: Bruce Wang
Author-email: binghuiwang0726@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: PySimpleGUI
Requires-Dist: pywin32
Requires-Dist: pyttsx3

# PySimpleTest -- Make test as simple as possible

PySimpleTest is a very simple test framwork. To start using it, try following example:  
Write a file `main.py`:
```
from PySimpleTest import *

a = 2
should_be_equal(a, 2)
should_be_less(a, 1)
```
Then run it. You can get following cmd output:  
<div align="center">
<img src="https://s1.ax1x.com/2020/08/15/dkoHfS.png" width="350">
</div>

Please see full documentation at <https://github.com/Time-Coder/PySimpleTest>

