Forum member

TKrueger

9 posts

Posts by TKrueger

  1. BUG: DynamicData does not work properly for Interfaces

    Good morning, I tried the new version in my test project and main application. The tests there have now been successfully completed. Thank you for your fast support.

  2. BUG: DynamicData does not work properly for Interfaces

    Hi, I have tried to resolve my left issues in my main application and could not fix the following scenario as extension of the reported issue: [code=csharp] public static IEnumerable<object[]> DoSomethingTestData { get { yield return new object[] { null, true, "Doubled input" }; } …

  3. BUG: DynamicData does not work properly for class with null test

    Hi, I have checked my issue again and have to say "sorry my mistake".

  4. BUG: DynamicData does not work properly for class with null test

    Hello, I tried the new version in my test project. There the test has now been successfully completed. Unfortunately I have determined an other issue in my main application which relates to the current issue. I have updated my test project and can reproduce the issuse with the following ad…

  5. BUG: DynamicData does not work properly for Interfaces

    Hello, I tried the new version in my test project and main application. There the test has now been successfully completed. Thanks

  6. BUG: DynamicData does not work properly for StringExtensions

    Hello, I tried the new version in my test project. There the test has now been successfully completed. Unfortunately this doesn't help me in my main application because of the two other issues I reported. [list=1] [*][url=https://forum.ncrunch.net/yaf_postst2657_BUG--DynamicData-does-not-wo…

  7. BUG: DynamicData does not work properly for StringExtensions

    [code=csharp] public static class StringExtensions { /// <summary> /// Strips HTML tags from value /// </summary> /// <param name="value">The value</param> /// <returns>Doubled value</returns> public static string DoSomething(this string value) { if (value == null) { return…

  8. BUG: DynamicData does not work properly for Interfaces

    [code=csharp] public interface ISomeImplementation { bool DoSomething(); } public class SomeImplementation : ISomeImplementation { public bool DoSomething() { return true; } } [TestClass, TestCategory("NCrunch.DynamicData")] public class ImplementationVsInterfaceDynamicDataTes…

  9. BUG: DynamicData does not work properly for class with null test

    [code=csharp] public class SomeImplementation : ISomeImplementation { public bool DoSomething() { return true; } } [TestClass, TestCategory("NCrunch.DynamicData")] public class ImplementationDynamicDataTest { /* * NCrunch analyse process dies at test with class variables provid…