blob: b7e3706501045c5941addda374fc1558a1ad0638 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
|