Skip to content

Commit d37f809

Browse files
authored
Merge pull request #861 from nunit/Issue852
Issue852
2 parents d8095ce + d898489 commit d37f809

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+77
-45
lines changed

src/NUnitTestAdapter/AdapterSettings.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2014-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2014-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/CategoryList.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2014-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2014-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/EmbeddedAssemblyResolution.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2014-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2014-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/Metadata/TypeInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2018-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2018-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/NUnit3TestDiscoverer.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2011-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2011-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/NUnit3TestExecutor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2011-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2011-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/NUnitEngine/DiscoveryConverter.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the
@@ -235,7 +235,7 @@ private static void ExtractAllFixtures(NUnitDiscoveryTestSuite parent, XElement
235235

236236
private static void ExtractTestFixtures(NUnitDiscoveryCanHaveTestFixture parent, XElement node)
237237
{
238-
foreach (var child in node.Elements())
238+
foreach (var child in node.Elements().Where(o => o.Name != "properties"))
239239
{
240240
var type = child.Attribute(NUnitXmlAttributeNames.Type).Value;
241241
var className = child.Attribute(NUnitXmlAttributeNames.Classname)?.Value;

src/NUnitTestAdapter/NUnitEngine/DiscoveryException.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/NUnitEngine/Extensions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/NUnitEngine/NUnitDiscoveryTestClasses.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/NUnitEngine/NUnitEngineAdapter.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/NUnitEngine/NUnitEventTestCase.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/NUnitEngine/NUnitResults.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/NUnitEngine/NUnitTestEvent.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/NUnitEngine/NUnitTestEventHeader.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/NUnitEngine/NUnitTestEventTestOutput.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/NUnitEventListener.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2011-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2011-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/NUnitTestAdapter.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2011-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2011-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/NUnitTestFilterBuilder.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2011-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2011-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/NavigationData.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2016-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2016-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/NavigationDataProvider.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2018-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2018-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/PackageSettings.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2014-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2014-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/TestConverter.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2011-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2011-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/TestConverterForXml.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2011-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2011-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/TestLogger.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2013-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2013-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/TraitsFeature.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2013-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2013-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/VsTestFilter.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2013-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2013-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapter/XmlHelper.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2010-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2010-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapterTests/AdapterSettingsTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2011-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2011-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapterTests/CurrentDirectoryTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2019-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2019-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapterTests/Fakes/FakeDiscoveryContext.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2012-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2012-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapterTests/Fakes/FakeRunSettings.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2012-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2012-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapterTests/NUnitEngineTests/NUnitDiscoveryTests.cs

+32
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using System.Linq;
2+
using System.Xml;
23
using NSubstitute;
34
using NUnit.Framework;
45
using NUnit.VisualStudio.TestAdapter.NUnitEngine;
@@ -1114,5 +1115,36 @@ public void ThatSetUpFixtureWorksIssue824()
11141115
new NUnitResults(XmlHelper.CreateXmlNode(SetupFixtureIssue824)));
11151116
Assert.That(ndr, Is.Not.Null);
11161117
}
1118+
1119+
private const string ExtractFixturesHandlesProperties =
1120+
@"<test-run id='0' name='Issue824.dll' fullname='d:\repos\NUnit\nunit3-vs-adapter.issues\Issue824\bin\Debug\net5.0\Issue824.dll' runstate='Runnable' testcasecount='2'>
1121+
<test-suite type='Assembly' id='0-1012' name='Issue824.dll' fullname='d:/repos/NUnit/nunit3-vs-adapter.issues/Issue824/bin/Debug/net5.0/Issue824.dll' runstate='Runnable' testcasecount='2'>
1122+
<environment framework-version='3.13.1.0' clr-version='5.0.4' os-version='Microsoft Windows 10.0.18363' platform='Win32NT' cwd='d:\repos\NUnit\nunit3-vs-adapter.issues\Issue824\bin\Debug\net5.0' machine-name='DESKTOP-SIATMVB' user='TerjeSandstrom' user-domain='AzureAD' culture='en-US' uiculture='en-US' os-architecture='x64' />
1123+
<test-suite type='ParameterizedFixture' id='0-1253' name='Issue3848' fullname='nunit.v3.Issue3848' runstate='Runnable' testcasecount='4'>
1124+
<properties>
1125+
<property name='ParallelScope' value='All' />
1126+
</properties>
1127+
<test-suite type='TestFixture' id='0-1254' name='Issue3848(&quot;Chrome&quot;)' fullname='nunit.v3.Issue3848(&quot;Chrome&quot;)' runstate='Runnable' testcasecount='2'>
1128+
<test-case id='0-1106' name='Test1' fullname='nunit.v3.Issue3848(&quot;Chrome&quot;).Test1' methodname='Test1' classname='nunit.v3.Issue3848' runstate='Runnable' seed='1759656977' />
1129+
<test-case id='0-1107' name='Test2' fullname='nunit.v3.Issue3848(&quot;Chrome&quot;).Test2' methodname='Test2' classname='nunit.v3.Issue3848' runstate='Runnable' seed='637248127' />
1130+
</test-suite>
1131+
<test-suite type='TestFixture' id='0-1255' name='Issue3848(&quot;Edge&quot;)' fullname='nunit.v3.Issue3848(&quot;Edge&quot;)' runstate='Runnable' testcasecount='2'>
1132+
<test-case id='0-1109' name='Test1' fullname='nunit.v3.Issue3848(&quot;Edge&quot;).Test1' methodname='Test1' classname='nunit.v3.Issue3848' runstate='Runnable' seed='273999456' />
1133+
<test-case id='0-1110' name='Test2' fullname='nunit.v3.Issue3848(&quot;Edge&quot;).Test2' methodname='Test2' classname='nunit.v3.Issue3848' runstate='Runnable' seed='777271813' />
1134+
</test-suite>
1135+
</test-suite>
1136+
</test-suite>
1137+
</test-run>";
1138+
1139+
[Test]
1140+
public void ThatExtractFixturesHandlesProperties()
1141+
{
1142+
var sut = new DiscoveryConverter(logger, settings);
1143+
XmlNode node = null;
1144+
Assert.DoesNotThrow(() => node = XmlHelper.CreateXmlNode(ExtractFixturesHandlesProperties));
1145+
var ndr = sut.ConvertXml(
1146+
new NUnitResults(node));
1147+
Assert.That(ndr, Is.Not.Null);
1148+
}
11171149
}
11181150
}

src/NUnitTestAdapterTests/NUnitEngineTests/NUnitResultsTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapterTests/NUnitEngineTests/NUnitTestCaseTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapterTests/NUnitEngineTests/NUnitTestEventsTests.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the
@@ -303,7 +303,7 @@ public void ThatTestCaseFailsCanBeParsedWithReason()
303303
@"<test-case id='0-1001' name='ExplicitTest' fullname='NUnit3VSIssue811.Explicit.ExplicitTest' methodname='ExplicitTest' classname='NUnit3VSIssue811.Explicit' runstate='Runnable' seed='1980958818' result='Skipped' label='Explicit' site='Parent' start-time='0001-01-01T00:00:00.0000000' end-time='0001-01-01T00:00:00.0000000' duration='0.000000' asserts='0' parentId='0-1000'/>";
304304

305305
/// <summary>
306-
/// Issue 811
306+
/// Issue 811.
307307
/// </summary>
308308
[Test]
309309
public void ThatExplicitTestFixtureWorksWithZeroStartTime()

src/NUnitTestAdapterTests/NUnitEventListenerOutputTests.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class NUnitEventListenerOutputTests
3939
@"<test-case id='0-1001' name='Test1' fullname='UnitTests.Test1' methodname='Test1' classname='UnitTests' runstate='Runnable' seed='108294034' result='Passed' start-time='2018-10-15 09:41:24Z' end-time='2018-10-15 09:41:24Z' duration='0.000203' asserts='0' parentId='0-1000' />";
4040

4141
/// <summary>
42-
/// For Issue 811
42+
/// For Issue 811.
4343
/// </summary>
4444
private const string TestFinishWithExplicitFixture =
4545
@"<test-case id='0-1001' name='ExplicitTest' fullname='NUnit3VSIssue811.Explicit.ExplicitTest' methodname='ExplicitTest' classname='NUnit3VSIssue811.Explicit' runstate='Runnable' seed='1980958818' result='Skipped' label='Explicit' site='Parent' start-time='0001-01-01T00:00:00.0000000' end-time='0001-01-01T00:00:00.0000000' duration='0.000000' asserts='0' parentId='0-1000'/>";
@@ -89,7 +89,7 @@ public void ThatTestOutputWithOnlyWhiteSpaceIsNotOutput()
8989
}
9090

9191
/// <summary>
92-
/// Issue 811 System.FormatException: The UTC representation of the date falls outside the year range 1-9999" from skipped test in Eastern European time zone
92+
/// Issue 811 System.FormatException: The UTC representation of the date falls outside the year range 1-9999" from skipped test in Eastern European time zone.
9393
/// </summary>
9494
[Test]
9595
public void ThatExplicitTestFixtureWorksWithZeroStartTime()

src/NUnitTestAdapterTests/NUnitEventListenerTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2012-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2012-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapterTests/TestAdapterUtils.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2018-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2018-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapterTests/TestConverterForXmlTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2011-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2011-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapterTests/TestConverterTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2011-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2011-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapterTests/TestDiscoveryTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2011-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2011-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/NUnitTestAdapterTests/TestExecutionTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2012-2020 Charlie Poole, Terje Sandstrom
2+
// Copyright (c) 2012-2021 Charlie Poole, Terje Sandstrom
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

0 commit comments

Comments
 (0)