push
github
921 of 986 new or added lines in 47 files covered. (93.41%)
1682 of 1951 relevant lines covered (86.21%)
0.86 hits per line
1 |
import threading |
1✔ |
2 |
from abc import abstractmethod |
1✔ |
3 |
|
|
4 |
class ComponentSimulatorThread(threading.Thread): |
1✔ |
5 |
|
|
6 |
@abstractmethod
|
1✔ |
7 |
def run(self) -> None: |
1✔ |
NEW
|
pass
|
× |
9 |
|
|
10 |
@abstractmethod
|
1✔ |
11 |
def task(self) -> None: |
1✔ |
NEW
|
pass
|
× |
13 |
|
|
14 |
@abstractmethod
|
1✔ |
15 |
def stop(self) -> None: |
1✔ |
NEW
|
pass
|
× |