Forum member

antix

5 posts

Posts by antix

  1. EnumerateTestCommands

    Yes that option gets those tests out of my list which is what I want Thanks for the explanation, Ant

  2. EnumerateTestCommands

    ok, looks like an xunit thing rather than anything to do ncrunch, the method is too late

  3. EnumerateTestCommands

    Hello I am trying to get a test to skip based on a check made in EnumerateTestCommands e.g. [code=csharp] if (someCriteria) { return new[] { new SkipCommand(method, method.Name, "Integration test skipped") }; }[/code] but this is resulting in a failed test > *** Wa…

  4. 1.41b: 'Additional files to include' not working?

    This happens for me when there is no ncrunchproject file or no AdditionalFilesToInclude element in it it not being there due to it being excluded from source control To get one I click Ignore This Component Completely in the config ui this creates a new file Then I edit it to put <AdditionalF…

  5. mspec and generic type behaviors not found by the runner

    Hi If I have the following, the test (gets_a_thing) is not found by the runner [Behaviors] class test_behavior<TKey> { protected It gets_a_thing = () => service.Get(key); protected static IService<TKey> service; protected static TKey key; } class test_impl_1{ Beh…