Forum member

mortan

6 posts

Posts by mortan

  1. Engine doesn't match project name if it contains a dot

    [quote=Remco;8411]I've looked into this issue, but unfortunately I'm having trouble reproducing it. When I create a new project with the name 'Playground.IntegrationTests', then create a new custom engine mode using filter: IsNotInProjectWithName 'Playground.IntegrationTests', the tests seem to b…

  2. Engine doesn't match project name if it contains a dot

    Hello! There is a problem with the "Automatic Test Filter" feature in the engine configuration dialog. I added the "is not in project with name" filter with the value "Playground.IntegrationTests", but all tests inside this project still get executed automatically by NCrunch. If I rename my proje…

  3. An option to disable parallel execution by NUnit categories?

    Hi! I'm aware that you can disable parallel test execution via the [NCrunch.Framework.ExclusivelyUses] attribute but I want to avoid using it (multi developer project, not everyone is using NCrunch, checking in the Ncrunch.Framework.dll isn't great either). Is there really no way to have paral…

  4. Easy way to copy an additional file to the _ncrunchreferences folder?

    Ah I see. Well if it is a limitation coming from MSBuild I will stick with the "Copy referenced assemblies to workspace" option. Maybe you got an idea [url=http://forum.ncrunch.net/yaf_postsm7126_An-option-to-disable-parallel-execution-by-NUnit-categories.aspx]for this issue[/url] of mine? Tha…

  5. Easy way to copy an additional file to the _ncrunchreferences folder?

    Hi Remco! Copying the file to the ncrunchreferences directory in a SetUpFixture method could work, but it's not something I would like to do (hard wire the unit tests to ncrunch feels very wrong to me). I was searching for an option to specify the output folder in the "Include additional files…

  6. Easy way to copy an additional file to the _ncrunchreferences folder?

    Hi! My projects are referencing a nuget package that contains an assembly and a configuration file. On build both files are copied to the bin\Debug\ folder and everything works (assembly is loading the configuration file relative to its file path). Using ncrunch the referenced assembly is placed …