Forum member

mrt181

4 posts

Posts by mrt181

  1. Different test results with ncrunch and NUnit tool

    Ok, that works but feels like a hack. Shouldn't it behave like nunit, no matter if this is worse or better? Shouldn't this diagnostic behavior be optional?

  2. Different test results with ncrunch and NUnit tool

    I am testing this method: [code=csharp]public static Base<T> Create(string typeName, string assemblyName) where T : class { string name = string.Format( CultureInfo.InvariantCulture, "{0}`1[[{1}]], {2}", typeName, typeof(T), assemblyName); Type …

  3. NCrunch should scan the sut's binary dir for DLLs

    I have made a mistake. My Implementation references my Abstraction. Therefore my Abstraction can't reference my Implementation, (circular reference). That is great because the Abstraction shouldn't be aware of concrete implementations. Because of this i have to add the implementation DLLs manually …

  4. NCrunch should scan the sut's binary dir for DLLs

    Hello, i have written some code that determines at runtime which objects it should instantiate. I am also able to add new classes at runtime by adding new dlls to the projects binary output directory. [code=csharp]public static AbstractBase<T> Create<T>() where T : class { string impleme…