MSpec gurus, why doesn't this work?

public class with_command_line_args {
    protected const string ValidFilename = "ValidFilename.txt";
    protected const string InvalidFilename = "Invalid:Filename";
    protected static  string[] Args;
    protected static Exception Exception;
}

[Behaviors]
public class InvalidCommandlineArgsBehaviours
{
    protected static Exception Exception;
    It should_throw= () => Exception.ShouldNotBeNull();
    //It should_not_store_any_filename;
}

[Subject(typeof(Program), "Invalid command line parameter")]
public class when_invoked_with_no_parameters : with_command_line_args
{
    Establish context = () => Args = new string[] {};
    Because of = () => Exception = Catch.Exception(() => Program.ProcessCommandLineArgs(Args));
    Behaves_like<InvalidCommandlineArgsBehaviours> invalid_args;
}

When i run this in ReSharper, the specification shows up but doesn't execute (I can't debug it either):
ReSharper Unit Test Runner output
Curiously, the commented-out specification shows up in the ReSharper output. Eh? Clearly I'm not doing something right, please enlighten me!

link|improve this question

79% accept rate
feedback

1 Answer

Ah, this must have been a wierd ReSharper thing. After quitting from Visual Studio and re-running the context, it works as expected. ReSharper test Runner output

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.