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

1from pyTooling.Decorators import export 

2 

3from pyTooling.CLIAbstraction import Executable 

4 

5 

6@export 

7class HDLSimulator: 

8 def GetLibraryCreator(self) -> Executable: 

9 raise NotImplementedError(f"") 

10 

11 def GetLibraryMapper(self) -> Executable: 

12 raise NotImplementedError(f"") 

13 

14 def GetLibraryDeleter(self) -> Executable: 

15 raise NotImplementedError(f"") 

16 

17 def GetVHDLAnalyzer(self) -> Executable: 

18 raise NotImplementedError(f"") 

19 

20 def GetVerilogCompiler(self) -> Executable: 

21 raise NotImplementedError(f"") 

22 

23 def GetEloborator(self) -> Executable: 

24 raise NotImplementedError(f"") 

25 

26 def GetSimulator(self) -> Executable: 

27 raise NotImplementedError(f"")