| 819 | |
| 820 | |
| 821 | class NotLaunchedTestItem(CustomTestItem): |
| 822 | |
| 823 | def __init__(self, nodeid, location, test_suffix): |
| 824 | super(NotLaunchedTestItem, self).__init__(nodeid, location, test_suffix) |
| 825 | self._status = "not_launched" |
| 826 | |
| 827 | |
| 828 | class CrashedTestItem(CustomTestItem): |
no outgoing calls
no test coverage detected