Manfred Brands
Manfred Brands
Fixes #720 This is on top of #716
NUnit2026 checks if the arguments of looking for items in a collection matches the actual type of the collection itself. It fires on `Does.Contain`, but not on `Does.Not.Contain` nor `Has.Member`,...
The below occurred when changing a variable from a `List` to an `ImmutableArray`. The same error occurs on a normal array (`string[]`) The `Count` previously was a property on the...
I noticed that on large solutions, with 100s of project, that the annotator creates reference packages in every project taking up considerable amount of diskspace. So I created a tiny...
This PR adds support for proper Timeout to .NET 8.0
At the moment we require the members that are passed into the `TestCaseSource` and `ValueSource` attributes to be `static`. However, if the name is `null` we assume the `TestFixture` itself...
I stumbled over code doing: ```csharp Assert.That(instance is SomeType, Is.True); Assert.That(instance is SomeType); ``` This should be converted into: ```csharp Assert.That(instance, Is.InstanceOf()); ```
Fixes #3730 ### Context Symbolic link in the `bin` folder to `obj/Assembly.dll` were created just like that. ### Changes Made Converted relative paths to be relative to the target directory...