test_demos.py 274 Bytes
Newer Older
BO ZHANG's avatar
BO ZHANG committed
1
2
import unittest

BO ZHANG's avatar
BO ZHANG committed
3
from csst_proto.api import a_demo_function
BO ZHANG's avatar
BO ZHANG committed
4
5
6


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
    def test_demo_function(self):
        # flip test image
        self.assertTrue(
BO ZHANG's avatar
BO ZHANG committed
11
            a_demo_function(None) == 1
BO ZHANG's avatar
BO ZHANG committed
12
        )