MCPcopy Index your code
hub / github.com/cirosantilli/linux-kernel-module-cheat / __init__

Method __init__

common.py:1097–1105  ·  view source on GitHub ↗
(
        self,
        test_id: str,
        result : TestResult =None,
        ellapsed_seconds : float =None
    )

Source from the content-addressed store, hash-verified

1095
1096class Test:
1097 def __init__(
1098 self,
1099 test_id: str,
1100 result : TestResult =None,
1101 ellapsed_seconds : float =None
1102 ):
1103 self.test_id = test_id
1104 self.result = result
1105 self.ellapsed_seconds = ellapsed_seconds
1106 def __str__(self):
1107 out = []
1108 if self.result is not None:

Callers 3

__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected