v1.47
I've only recently discovered the awesomeness of custom engine modes. So I've created one which includes pinned tests, or only impacted tests but only if they do not explicitly use my Database resource attribute, i.e. condition:
Code:
__________full name matches regex [ .*CanExportScriptToFile.* ]
|
<nested contition> -------------OR
| |__________is pinned
|
OR
|
| __________does not have exclusive use of resource [ Database ]
| |
<nested contition>|------------AND
|__________is impacted
So now I wanted to explicitly run a test which has "Database" explicitly resource attribute
set on the fixture itself.
This test is off course marked as "not covered", and I can't seem to find it in the tests window either. Can I somehow explicitly pin that test to make it run within my engine mode?
Thanks.