MCPcopy Create free account
hub / github.com/FEX-Emu/FEX / TestData

Class TestData

Scripts/InstructionCountParser.py:15–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13
14@dataclass
15class TestData:
16 name: str
17 expectedinstructioncount: int
18 code: bytes
19 instructions: list
20 def __init__(self, Name, ExpectedInstructionCount, Code, Instructions):
21 self.name = Name
22 self.expectedinstructioncount = ExpectedInstructionCount
23 self.code = Code
24 self.instructions = Instructions
25
26 @property
27 def Name(self):
28 return self.name
29
30 @property
31 def ExpectedInstructionCount(self):
32 return self.expectedinstructioncount
33
34 @property
35 def Code(self):
36 return self.code
37
38 @property
39 def Instructions(self):
40 return self.instructions
41
42TestDataMap = {}
43class HostFeatures(Flag) :

Callers 1

parse_json_dataFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected