Forum member

Heiko

4 posts

Posts by Heiko

  1. Code Coverage percentage report on NCrunch

    A idea for a solution: If it is posible, print the precentual coverage in the Project-Explorer Window near by the specific class: e.g. - ProjectX | 60% - ClassA | 20 % - ClassB | 0 % ...... And make the background in a red / yellow / green color. and the limits to switch between …

  2. Coverage Indicator in Code Editor

    I'm current improving my Test Coverage and collecting some expirience with NCrunch. So I have following Imporvment Ideas for the Coverage Indicator: The Coverage Indicator which display if a line is coverd or not has 3 States (Green, Red, Black). I Think there is a 4. state neccesary (Half Green…

  3. NChrunch and Dependancy Inject via Spring.Net

    How can I make the solution aviable, I don't find a function for attachments

  4. NChrunch and Dependancy Inject via Spring.Net

    There is a problem with loading Assemblys in the ApplicationDomain of NCrunch while using NCrunch: Assembly A - *.cs file: [code=csharp] namespace ClassLibrary2 { public interface IInterface { int I { get; set; } } public class ClassInterface : IInterface { …