Forum member
TKrueger
9 posts
Posts by TKrueger
-
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.
07 Mar 2019 07:35 UTC
-
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" }; } …
06 Mar 2019 12:14 UTC
-
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".
06 Mar 2019 12:03 UTC
-
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…
06 Mar 2019 08:21 UTC
-
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
06 Mar 2019 08:09 UTC
-
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…
22 Feb 2019 07:40 UTC
-
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…
04 Feb 2019 11:53 UTC
-
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…
04 Feb 2019 11:52 UTC
-
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…
04 Feb 2019 11:51 UTC