Skip to content

Commit a8d2034

Browse files
authored
Merge pull request #766 from nunit/prepare317
Prepare for 3.17 release
2 parents 697721f + 2c2d154 commit a8d2034

File tree

15 files changed

+11
-20
lines changed

15 files changed

+11
-20
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ or raise an issue [![](https://img.shields.io/github/issues/nunit/NUnit3-vs-Adap
2929

3030
## Documentation
3131

32-
The [NUnit3TestAdapter wiki](https://github.com/nunit/docs/wiki/Visual-Studio-Test-Adapter) is the best place to start.
32+
The [NUnit3TestAdapter wiki](https://docs.nunit.org/articles/vs-test-adapter/Index.html) is the best place to start.
3333

34-
Also check the [release notes](https://github.com/nunit/docs/wiki/Adapter-Release-Notes).
34+
Also check the [release notes](https://docs.nunit.org/articles/vs-test-adapter/Adapter-Release-Notes.html).
3535

3636

3737

nuget/NUnit3TestAdapter.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
Note that with this package you should not install the VSIX adapter package.
2121
</description>
22-
<releaseNotes>This release works with NUnit 3.0 and higher only. Also see https://github.com/nunit/docs/wiki/Adapter-Release-Notes </releaseNotes>
22+
<releaseNotes>This release works with NUnit 3.0 and higher only. Also see https://docs.nunit.org/articles/vs-test-adapter/Adapter-Release-Notes.html </releaseNotes>
2323
<copyright>Copyright (c) 2011-2020 Charlie Poole, 2014-2020 Terje Sandstrom</copyright>
2424
<language>en-US</language>
2525
<tags>test visualstudio testadapter nunit nunit3 dotnet</tags>

src/NUnit.TestAdapter.Tests.Acceptance/Utils.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ public static DirectoryMutex CreateMutexDirectory(string parentDirectory, string
6969

7070
for (var id = 1; ; id++)
7171
{
72-
var path = Path.Combine(parentDirectory,
72+
var path = Path.Combine(
73+
parentDirectory,
7374
safeName is null ? id.ToString() :
7475
id == 1 ? safeName :
7576
safeName + "_" + id);

src/NUnit.TestAdapter.Tests.Acceptance/WorkspaceTools/IsolatedWorkspace.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public sealed partial class IsolatedWorkspace : IDisposable
1616

1717
public IsolatedWorkspace(DirectoryMutex directoryMutex, ToolResolver toolResolver)
1818
{
19-
this.directoryMutex = directoryMutex ?? throw new ArgumentNullException(nameof(toolResolver)); ;
19+
this.directoryMutex = directoryMutex ?? throw new ArgumentNullException(nameof(toolResolver));
2020
this.toolResolver = toolResolver ?? throw new ArgumentNullException(nameof(toolResolver));
2121
}
2222

src/NUnit3TestAdapterInstall/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Description xml:space="preserve">NUnit 3 adapter for running tests in Visual Studio. Works with NUnit 3.x.
77
For running NUnit 2 tests, use the NUnit 2 adapter.
88
Note that use of VSIX Test adapters are deprecated in VS 2019, we recommend you to use the nuget versions of the adapter. </Description>
9-
<MoreInfo>https://github.com/nunit/docs/wiki/Visual-Studio-Test-Adapter</MoreInfo>
9+
<MoreInfo>https://docs.nunit.org/articles/vs-test-adapter/Index.html</MoreInfo>
1010
<License>license.rtf</License>
1111
<Icon>nunit_90.png</Icon>
1212
<PreviewImage>preview.png</PreviewImage>

src/NUnitTestAdapter/NUnitEngine/DiscoveryExtensions.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ namespace NUnit.VisualStudio.TestAdapter.NUnitEngine
66
{
77
public class DiscoveryExtensions
88
{
9-
109
public TestConverter TestConverter { get; private set; }
1110

1211
public IList<TestCase> Convert(NUnitResults discoveryResults, ITestLogger logger, string assemblyPath, IAdapterSettings settings)

src/NUnitTestAdapter/NUnitEngine/NUnitTestCase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public enum eRunState
4343
NA,
4444
Runnable,
4545
Explicit
46-
};
46+
}
4747

4848
public bool IsTestCase => !IsNull && Node.Name == "test-case";
4949
public bool IsParameterizedMethod => Type == "ParameterizedMethod";

src/NUnitTestAdapter/NUnitEngine/NUnitTestEvent.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,6 @@ public IEnumerable<NUnitAttachment> NUnitAttachments
170170
return nUnitAttachments;
171171
}
172172
}
173-
174173
}
175174

176175

src/NUnitTestAdapter/NUnitEngine/NUnitTestEventTestCase.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace NUnit.VisualStudio.TestAdapter.NUnitEngine
44
{
5-
65
public interface INUnitTestEventTestCase : INUnitTestEvent
76
{
87
NUnitFailure Failure { get; }

src/NUnitTestAdapter/NUnitEngine/NUnitTestEventTestOutput.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,5 @@ public NUnitTestEventTestOutput(XmlNode node) : base(node)
8787
// Notes:
8888
// The input doesnt have any id, but used testid instead.
8989
// Properties FullName and Name is not in use
90-
9190
}
9291
}

0 commit comments

Comments
 (0)