Forum member

SteveCooperOrg

7 posts

Posts by SteveCooperOrg

  1. Benefits of NCrunch vs Other Test Tools

    I use NCrunch because it makes running tests the default position. If you've got an NCrunch window open showing only failed tests, then you immediately see when you've broken something without having to actively decide to run tests. That means I rewrite code with a lot more confidence. Since the com…

  2. Problems with automapper?

    rlawley - my automapper is more complicated than the usual case because I'm using Ninject when constructing various Resolvers. This means that AutoMapper is stateful for each test. It's a bit of an unholy place to be but so long as I can do; Mapper.Reset() Mapper.Map<Stuff, StuffDto>() at the…

  3. Problems with automapper?

    A follow-up -- I've applied [code]NCrunch.Framework.SerialAttribute[/code] to all my test projects, but the documentation at https://www.ncrunch.net/documentation/reference_runtime-framework_serial-attribute seems to suggest that this will only ensure serial execution within each assembly; …

  4. Problems with automapper?

    Hi, Anyone got any experience with running NCrunch on a project with lots of calls to [url=http://automapper.org/]AutoMapper[/url]? We have lots of fixtures that need AutoMapper to have been initialized -- something like [code]AutoMapperConfig.Initialize(configForATest);[/code] or …

  5. 'Additional Files To Include' adding Byte-order mark? (NCrunch 1.48)

    Remco, thanks -- I'd never have thought about it being the document in the IDE being the problem, but that makes a lot of sense when I think about it. A very preliminary test shows that closing the file and rebuilding the component seems to work correctly, so I think you've probably cracked it f…

  6. 'Additional Files To Include' adding Byte-order mark? (NCrunch 1.48)

    Hi, I'm getting a strange error using NCrunch 1.48's 'Additional files to include' configuration option. It seems that a text file is not being simply copied, but rather, somehow a Unicode BOM is being injected into the file as part of the copy. Is that feasible? I've uploaded an example of a…

  7. Project build error after updating to vs2013

    Thanks for this -- projects with XAML files now build successfully for me in VS2013. Thanks again! Steve