test_other_functions.py 290 Bytes
Newer Older
BO ZHANG's avatar
BO ZHANG committed
1
2
3
4
5
6
import unittest

from csst_proto.top_level_interface import a_demo_function


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