test_other_functions.py 259 Bytes
Newer Older
BO ZHANG's avatar
BO ZHANG committed
1
2
3
4
5
6
7
8
9
10
11
import unittest

from csst_proto.top_level_interface import a_demo_function


class TestCaseDemoFunction(unittest.TestCase):
    def test_demo_function(self):
        # flip test image
        self.assertTrue(
            a_demo_function(1) is None
        )