| 826 | |
| 827 | |
| 828 | class CrashedTestItem(CustomTestItem): |
| 829 | |
| 830 | def __init__(self, nodeid, location, test_suffix): |
| 831 | super(CrashedTestItem, self).__init__(nodeid, location, test_suffix) |
| 832 | self._status = "crashed" |
| 833 | |
| 834 | |
| 835 | class DeselectedTestItem(CustomTestItem): |
no outgoing calls
no test coverage detected