Add initial tests
This commit is contained in:
12
tests/test_hand_recogniser.py
Normal file
12
tests/test_hand_recogniser.py
Normal file
@@ -0,0 +1,12 @@
|
||||
import unittest
|
||||
from GestureRecognition.SimpleHandRecogniser import SimpleHandRecogniser
|
||||
|
||||
class TestSimpleHandRecogniser(unittest.TestCase):
|
||||
|
||||
|
||||
|
||||
def setUp(self):
|
||||
self.image_path = "H:\car\GestureRecognition\IMG_0818.png"
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
Reference in New Issue
Block a user