Skip to content
test_other_functions.py 290 B
Newer Older
import unittest

from csst_proto.top_level_interface import a_demo_function


class TestCaseDemoFunction(unittest.TestCase):
BO ZHANG's avatar
BO ZHANG committed
    """ test demo function """
    def test_demo_function(self):
        # flip test image
        self.assertTrue(
            a_demo_function(1) is None
        )