diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2020-12-28 18:15:03 +0100 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2020-12-28 18:16:17 +0100 |
commit | 7f703bfbb31f24c84d0b224aeb3613692bddf214 (patch) | |
tree | c94876834162bd89c6a68e460779112d93d3c910 /testsuite/pyunit/dom/SimpleEntity.py | |
parent | 77db544ae08ad40a307b6e9c76ff62cafdb21809 (diff) | |
download | ghdl-7f703bfbb31f24c84d0b224aeb3613692bddf214.tar.gz ghdl-7f703bfbb31f24c84d0b224aeb3613692bddf214.tar.bz2 ghdl-7f703bfbb31f24c84d0b224aeb3613692bddf214.zip |
Renamed testcase to SimpleEntity.
Diffstat (limited to 'testsuite/pyunit/dom/SimpleEntity.py')
-rw-r--r-- | testsuite/pyunit/dom/SimpleEntity.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/testsuite/pyunit/dom/SimpleEntity.py b/testsuite/pyunit/dom/SimpleEntity.py new file mode 100644 index 000000000..429c1a5a8 --- /dev/null +++ b/testsuite/pyunit/dom/SimpleEntity.py @@ -0,0 +1,25 @@ +from pathlib import Path +from unittest import TestCase + +from pyVHDLModel.VHDLModel import Design, Library, Document, Entity + + +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_Design(self): + design = Design() + + def test_Library(self): + library = Library() + + def test_Document(self): + path = Path("tests.vhdl") + document = Document(path) + + def test_Entity(self): + entity = Entity("entity_1") |