From 6d6ff5b7bdaa30c64580d628fde769f3c86d81aa Mon Sep 17 00:00:00 2001 From: knikolaou Date: Wed, 8 May 2024 16:38:09 +0200 Subject: [PATCH] create dummy test suite --- CI/unit_tests/test_dummy_test.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 CI/unit_tests/test_dummy_test.py diff --git a/CI/unit_tests/test_dummy_test.py b/CI/unit_tests/test_dummy_test.py new file mode 100644 index 0000000..85b125c --- /dev/null +++ b/CI/unit_tests/test_dummy_test.py @@ -0,0 +1,15 @@ +""" +Some Information about this module +""" + + +class TestDummyTest: + """ + Some Information about this class + """ + + def test_dummy_test(self): + """ + Some Information about this method + """ + assert True \ No newline at end of file