File size: 292 Bytes
a6dd040 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# C++ Backend Unit Tests
## Installation
```
rm -rf build; CXX=g++; python setup.py install <test_name>
```
## Individual Test
```
python -m unittest <test_name>
python -m unittest <test_name> --nodebug # to remove deub flags
```
e.g.
```
python -m unittest coordinate_map_key_test
```
|