Forum member

shamp00

3 posts

Posts by shamp00

  1. Tests ignored with RegexTestSelector are being executed since upgrade to NCrunch 2

    In v1.48 I was excluding many tests with RegexTestSelectors such as these: [code=xml] <ProjectConfiguration> ... <IgnoredTests> <RegexTestSelector> <RegularExpression>BasicHealth\.Server\..*</RegularExpression> </RegexTestSelector> <RegexTestSelector> <RegularE…

  2. MSpec with Behaviors does not 'Go to selected Test'

    My solution at the moment is to do `Ctrl+,`to open 'navigate to' and then type in the name of the class. How about a right-click 'search' which just issues this same class name search? Some of my behaviors are reused by dozens of classes so anything would help...

  3. MSpec with Behaviors does not 'Go to selected Test'

    I can't find an easy way to jump to a failing spec when the spec uses Behaves_Like<>. When I double click on a test or right-click and 'Go to selected test' in the NCrunch output window, I get taken to the Behavior rather than the spec. For example, with the following failing spec: [code=cs…