Forum member
mrt181
4 posts
Posts by mrt181
-
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?
07 Jun 2011 19:48 UTC
-
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 …
07 Jun 2011 12:28 UTC
-
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 …
31 May 2011 13:24 UTC
-
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…
31 May 2011 11:04 UTC