Rob Prouse
Rob Prouse
#3301 brings up the fact that Partial Trust is no longer supported in .NET Core and conflicts with `HandleProcessCorruptedStateExceptions` in the full framework. This and other changes make me think...
The `Platforms` attribute currently takes a string to specify the platforms that it supports. These are error prone and sometimes hard to guess. Switch to passing in a flags enum...
Given this test fixture: ``` csharp [TestFixture] public class TestClass { [OneTimeSetUp] public void FixtureSetup () { Console.WriteLine ("FixSetUp"); } [SetUp] public void SetUp () { Console.WriteLine ("SetUp"); } [TearDown]...
Now that the test adapter supports .NET Core, it should be fairly easy to add in UWP (Windows 10) support. - Add `appx` to the supported file formats - Add...
Using NUnit 3.9 and adapter 3.9, I added `[assembly: Parallelizable(ParallelScope.All)]` to a project that I use for testing NUnit issues to test running everything in parallel. When I use **Run...
Markdowndeep and Github support indented blocks as `` or code blocks. Github also has the [Syntax Highlighting](https://help.github.com/articles/github-flavored-markdown#syntax-highlighting) format. `````` ```ruby require 'redcarpet' markdown = Redcarpet.new("Hello World!") puts markdown.to_html ``` ``````...
The change to 4.0 and running tests in the NUnitLite test runner removed the test targets that referenced WinForms and WCF. They should be reinstated. See #3753
The NUnitLite project is fairly small and is tightly coupled to the framework, so to me it makes sense to pull the classes into the framework giving people an easy...
The dotnet runtime repo does this, https://github.com/dotnet/runtime/blob/main/.github/workflows/backport.yml Note that it refers to custom actions in the repo located here, https://github.com/dotnet/runtime/tree/main/eng/actions/backport