Coverage for pyEDAA/ToolSetup/Interface.py: 100%
11 statements
« prev ^ index » next coverage.py v7.8.0, created at 2025-05-16 22:23 +0000
« prev ^ index » next coverage.py v7.8.0, created at 2025-05-16 22:23 +0000
1from pyTooling.Decorators import export
3from pyTooling.CLIAbstraction import Executable
6@export
7class HDLSimulator:
8 def GetLibraryCreator(self) -> Executable:
9 raise NotImplementedError(f"")
11 def GetLibraryMapper(self) -> Executable:
12 raise NotImplementedError(f"")
14 def GetLibraryDeleter(self) -> Executable:
15 raise NotImplementedError(f"")
17 def GetVHDLAnalyzer(self) -> Executable:
18 raise NotImplementedError(f"")
20 def GetVerilogCompiler(self) -> Executable:
21 raise NotImplementedError(f"")
23 def GetEloborator(self) -> Executable:
24 raise NotImplementedError(f"")
26 def GetSimulator(self) -> Executable:
27 raise NotImplementedError(f"")