diff options
Diffstat (limited to 'testsuite/pyunit/libghdl/Initialize.py')
-rw-r--r-- | testsuite/pyunit/libghdl/Initialize.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/testsuite/pyunit/libghdl/Initialize.py b/testsuite/pyunit/libghdl/Initialize.py new file mode 100644 index 000000000..b7e370650 --- /dev/null +++ b/testsuite/pyunit/libghdl/Initialize.py @@ -0,0 +1,20 @@ +from unittest import TestCase + + +if __name__ == "__main__": + print("ERROR: you called a testcase declaration file as an executable module.") + print("Use: 'python -m unitest <testcase module>'") + exit(1) + +class Instantiate(TestCase): + def test_InitializeGHDL(self): + pass + + def test_ReadSourceFile(self): + pass + + def test_ParseFile(self): + pass + + def test_ListDesignUnits(self): + pass |