Commit eb7c58fe authored by WillBrennan's avatar WillBrennan

added outline of tests

parent 1f6ece42
import unittest import cv2
import numpy
class BasicTestSuite(unittest.TestCase): def test_get_hsv_mask():
def test_dummy(self): img = cv2.imread("../test_image.png")
assert True assert True
if __name__ == '__main__': def test_get_rgb_mask():
unittest.main() img = cv2.imread("../test_image.png")
assert True
def test_get_ycrcb_mask():
img = cv2.imread("../test_image.png")
assert True
def test_grab_cut_mask():
img = cv2.imread("../test_image.png")
assert True
def test_closing():
img = cv2.imread("../test_image.png")
assert True
def test_process():
img = cv2.imread("../test_image.png")
assert True
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment