Manfred Brands

Results 38 issues of Manfred Brands

### Issue description or question You depend on del version 4.1.1, in the mean time there is del version 6.0.0 The old version has some issues deleting directories. When I...

Fixes #534 Creates a delta coverage report based upon the last two historic coverage files: ``` Delta Summary Generated on: 18/07/2022 - 16:24 Description Previous Current Delta Coverage date: 18/07/2022...

For a pull-request the coverage should not go down. Either more test on existing code is added or new code is accompanied with corresponding tests. Given a 'main' branch coverage...

We have internal Assert functions that do multiple separate NUnit Asserts internally. Main purpose is to compare instance of types that don't override/implement an Equals method. E.g.: ```csharp Assert.That(actualType, Is.EqualTo(expectedType),...

Fixes #3859 by setting both _message_ and _label_. Fixes #4021 It doesn't fix the current behaviour of `TimeoutAttribute` but allows for a _modern_ alternative. Two commits: 1. Add CancellationToken to...

A test similar to the code below worked in 3.12, but not in 3.13. It actually works on net5.0 but not on net48. ``` [TestFixture] internal sealed class LostSynchronizationContext {...

is:bug
pri:normal

Due to the [removal of `Thread.Abort` in later versions of .NET](https://docs.microsoft.com/en-us/dotnet/core/compatibility/core-libraries/5.0/thread-abort-obsolete), the `TimeoutAttribute` no longer stops the long running test. This means the test keeps running in the background, despite...

Found whilst working on #3926 On a test with more than one attribute: ``` [Platform(Include = "Linux")] [Platform(Include = "Win")] ``` I do get the error: _Only supported on Linux_...

Fixes #965 I left this as a draft PR as I don't expect it to be merged into master. The purpose is to get a special build that can be...