Commit ec8ee36a authored by BO ZHANG's avatar BO ZHANG 🏀
Browse files

added unit test for demo function

parent 574af1d3
Pipeline #155 passed with stages
in 18 seconds
def an_arbitrary_functions(*args): def a_demo_function(*args):
""" an arbitrary function """ """ a demo function """
print("Hi, this is an arbitrary function.") return None
for _ in args:
print(_)
from .flip_image import flip_image, read_test_image from .flip_image import flip_image, read_test_image
from .some_other_modules import an_arbitrary_functions from .some_other_modules import a_demo_function
__all__ = ["flip_image", "read_test_image", "an_arbitrary_functions"] __all__ = ["flip_image", "read_test_image", "a_demo_function"]
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
)
Supports Markdown
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