diff --git a/src/NUnitTestAdapter/AdapterSettings.cs b/src/NUnitTestAdapter/AdapterSettings.cs index d812da12..1cf84970 100644 --- a/src/NUnitTestAdapter/AdapterSettings.cs +++ b/src/NUnitTestAdapter/AdapterSettings.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2014-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2014-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/CategoryList.cs b/src/NUnitTestAdapter/CategoryList.cs index 8e60de07..d86ac4f3 100644 --- a/src/NUnitTestAdapter/CategoryList.cs +++ b/src/NUnitTestAdapter/CategoryList.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2014-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2014-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/EmbeddedAssemblyResolution.cs b/src/NUnitTestAdapter/EmbeddedAssemblyResolution.cs index 7796312a..654cf8fa 100644 --- a/src/NUnitTestAdapter/EmbeddedAssemblyResolution.cs +++ b/src/NUnitTestAdapter/EmbeddedAssemblyResolution.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2014-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2014-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/Metadata/TypeInfo.cs b/src/NUnitTestAdapter/Metadata/TypeInfo.cs index 2a3f3fa4..3e98f1ab 100644 --- a/src/NUnitTestAdapter/Metadata/TypeInfo.cs +++ b/src/NUnitTestAdapter/Metadata/TypeInfo.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2018-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2018-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/NUnit3TestDiscoverer.cs b/src/NUnitTestAdapter/NUnit3TestDiscoverer.cs index f940729b..aa7e92f9 100644 --- a/src/NUnitTestAdapter/NUnit3TestDiscoverer.cs +++ b/src/NUnitTestAdapter/NUnit3TestDiscoverer.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2011-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2011-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/NUnit3TestExecutor.cs b/src/NUnitTestAdapter/NUnit3TestExecutor.cs index b61ab793..b3f07c86 100644 --- a/src/NUnitTestAdapter/NUnit3TestExecutor.cs +++ b/src/NUnitTestAdapter/NUnit3TestExecutor.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2011-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2011-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/NUnitEngine/DiscoveryConverter.cs b/src/NUnitTestAdapter/NUnitEngine/DiscoveryConverter.cs index 8c4d378d..17821fce 100644 --- a/src/NUnitTestAdapter/NUnitEngine/DiscoveryConverter.cs +++ b/src/NUnitTestAdapter/NUnitEngine/DiscoveryConverter.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the @@ -235,7 +235,7 @@ private static void ExtractAllFixtures(NUnitDiscoveryTestSuite parent, XElement private static void ExtractTestFixtures(NUnitDiscoveryCanHaveTestFixture parent, XElement node) { - foreach (var child in node.Elements()) + foreach (var child in node.Elements().Where(o => o.Name != "properties")) { var type = child.Attribute(NUnitXmlAttributeNames.Type).Value; var className = child.Attribute(NUnitXmlAttributeNames.Classname)?.Value; diff --git a/src/NUnitTestAdapter/NUnitEngine/DiscoveryException.cs b/src/NUnitTestAdapter/NUnitEngine/DiscoveryException.cs index ca19d278..b58a7ba0 100644 --- a/src/NUnitTestAdapter/NUnitEngine/DiscoveryException.cs +++ b/src/NUnitTestAdapter/NUnitEngine/DiscoveryException.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/NUnitEngine/Extensions.cs b/src/NUnitTestAdapter/NUnitEngine/Extensions.cs index 1840c56e..38e01a4b 100644 --- a/src/NUnitTestAdapter/NUnitEngine/Extensions.cs +++ b/src/NUnitTestAdapter/NUnitEngine/Extensions.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/NUnitEngine/NUnitDiscoveryTestClasses.cs b/src/NUnitTestAdapter/NUnitEngine/NUnitDiscoveryTestClasses.cs index c914f62a..97898093 100644 --- a/src/NUnitTestAdapter/NUnitEngine/NUnitDiscoveryTestClasses.cs +++ b/src/NUnitTestAdapter/NUnitEngine/NUnitDiscoveryTestClasses.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/NUnitEngine/NUnitEngineAdapter.cs b/src/NUnitTestAdapter/NUnitEngine/NUnitEngineAdapter.cs index cad3e54a..1414aac2 100644 --- a/src/NUnitTestAdapter/NUnitEngine/NUnitEngineAdapter.cs +++ b/src/NUnitTestAdapter/NUnitEngine/NUnitEngineAdapter.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/NUnitEngine/NUnitEventTestCase.cs b/src/NUnitTestAdapter/NUnitEngine/NUnitEventTestCase.cs index fae20d01..0ade7fc5 100644 --- a/src/NUnitTestAdapter/NUnitEngine/NUnitEventTestCase.cs +++ b/src/NUnitTestAdapter/NUnitEngine/NUnitEventTestCase.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/NUnitEngine/NUnitResults.cs b/src/NUnitTestAdapter/NUnitEngine/NUnitResults.cs index 4cfe2b1a..84e5c238 100644 --- a/src/NUnitTestAdapter/NUnitEngine/NUnitResults.cs +++ b/src/NUnitTestAdapter/NUnitEngine/NUnitResults.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/NUnitEngine/NUnitTestEvent.cs b/src/NUnitTestAdapter/NUnitEngine/NUnitTestEvent.cs index 30e877e5..620a5604 100644 --- a/src/NUnitTestAdapter/NUnitEngine/NUnitTestEvent.cs +++ b/src/NUnitTestAdapter/NUnitEngine/NUnitTestEvent.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/NUnitEngine/NUnitTestEventHeader.cs b/src/NUnitTestAdapter/NUnitEngine/NUnitTestEventHeader.cs index 98088cf0..4080b55d 100644 --- a/src/NUnitTestAdapter/NUnitEngine/NUnitTestEventHeader.cs +++ b/src/NUnitTestAdapter/NUnitEngine/NUnitTestEventHeader.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/NUnitEngine/NUnitTestEventTestOutput.cs b/src/NUnitTestAdapter/NUnitEngine/NUnitTestEventTestOutput.cs index 893ac505..21a6cc7c 100644 --- a/src/NUnitTestAdapter/NUnitEngine/NUnitTestEventTestOutput.cs +++ b/src/NUnitTestAdapter/NUnitEngine/NUnitTestEventTestOutput.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/NUnitEventListener.cs b/src/NUnitTestAdapter/NUnitEventListener.cs index 4a11bf66..6c1e80c1 100644 --- a/src/NUnitTestAdapter/NUnitEventListener.cs +++ b/src/NUnitTestAdapter/NUnitEventListener.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2011-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2011-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/NUnitTestAdapter.cs b/src/NUnitTestAdapter/NUnitTestAdapter.cs index d1181966..0ab4119d 100644 --- a/src/NUnitTestAdapter/NUnitTestAdapter.cs +++ b/src/NUnitTestAdapter/NUnitTestAdapter.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2011-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2011-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/NUnitTestFilterBuilder.cs b/src/NUnitTestAdapter/NUnitTestFilterBuilder.cs index 006dd71f..1ac3e1f2 100644 --- a/src/NUnitTestAdapter/NUnitTestFilterBuilder.cs +++ b/src/NUnitTestAdapter/NUnitTestFilterBuilder.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2011-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2011-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/NavigationData.cs b/src/NUnitTestAdapter/NavigationData.cs index e030748e..166c1f30 100644 --- a/src/NUnitTestAdapter/NavigationData.cs +++ b/src/NUnitTestAdapter/NavigationData.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2016-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2016-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/NavigationDataProvider.cs b/src/NUnitTestAdapter/NavigationDataProvider.cs index d51e7d97..2f920bb8 100644 --- a/src/NUnitTestAdapter/NavigationDataProvider.cs +++ b/src/NUnitTestAdapter/NavigationDataProvider.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2018-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2018-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/PackageSettings.cs b/src/NUnitTestAdapter/PackageSettings.cs index 105e63e4..6833366c 100644 --- a/src/NUnitTestAdapter/PackageSettings.cs +++ b/src/NUnitTestAdapter/PackageSettings.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2014-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2014-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/TestConverter.cs b/src/NUnitTestAdapter/TestConverter.cs index 86e4f02c..75190c9c 100644 --- a/src/NUnitTestAdapter/TestConverter.cs +++ b/src/NUnitTestAdapter/TestConverter.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2011-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2011-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/TestConverterForXml.cs b/src/NUnitTestAdapter/TestConverterForXml.cs index dc4f4742..61527c78 100644 --- a/src/NUnitTestAdapter/TestConverterForXml.cs +++ b/src/NUnitTestAdapter/TestConverterForXml.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2011-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2011-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/TestLogger.cs b/src/NUnitTestAdapter/TestLogger.cs index 708ee5cb..2623cfe4 100644 --- a/src/NUnitTestAdapter/TestLogger.cs +++ b/src/NUnitTestAdapter/TestLogger.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2013-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2013-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/TraitsFeature.cs b/src/NUnitTestAdapter/TraitsFeature.cs index 4909e2bb..69586717 100644 --- a/src/NUnitTestAdapter/TraitsFeature.cs +++ b/src/NUnitTestAdapter/TraitsFeature.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2013-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2013-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/VsTestFilter.cs b/src/NUnitTestAdapter/VsTestFilter.cs index bd960e01..b20a7eb7 100644 --- a/src/NUnitTestAdapter/VsTestFilter.cs +++ b/src/NUnitTestAdapter/VsTestFilter.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2013-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2013-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapter/XmlHelper.cs b/src/NUnitTestAdapter/XmlHelper.cs index 17e68637..ee3da2cd 100644 --- a/src/NUnitTestAdapter/XmlHelper.cs +++ b/src/NUnitTestAdapter/XmlHelper.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2010-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2010-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapterTests/AdapterSettingsTests.cs b/src/NUnitTestAdapterTests/AdapterSettingsTests.cs index 47399985..7a035bfd 100644 --- a/src/NUnitTestAdapterTests/AdapterSettingsTests.cs +++ b/src/NUnitTestAdapterTests/AdapterSettingsTests.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2011-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2011-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapterTests/CurrentDirectoryTests.cs b/src/NUnitTestAdapterTests/CurrentDirectoryTests.cs index d85c81bd..3e0aef6b 100644 --- a/src/NUnitTestAdapterTests/CurrentDirectoryTests.cs +++ b/src/NUnitTestAdapterTests/CurrentDirectoryTests.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2019-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2019-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapterTests/Fakes/FakeDiscoveryContext.cs b/src/NUnitTestAdapterTests/Fakes/FakeDiscoveryContext.cs index 60c69ebf..4bfbcd36 100644 --- a/src/NUnitTestAdapterTests/Fakes/FakeDiscoveryContext.cs +++ b/src/NUnitTestAdapterTests/Fakes/FakeDiscoveryContext.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2012-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2012-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapterTests/Fakes/FakeRunSettings.cs b/src/NUnitTestAdapterTests/Fakes/FakeRunSettings.cs index 678d504d..50452c8d 100644 --- a/src/NUnitTestAdapterTests/Fakes/FakeRunSettings.cs +++ b/src/NUnitTestAdapterTests/Fakes/FakeRunSettings.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2012-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2012-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapterTests/NUnitEngineTests/NUnitDiscoveryTests.cs b/src/NUnitTestAdapterTests/NUnitEngineTests/NUnitDiscoveryTests.cs index 15e39530..dc5cadf8 100644 --- a/src/NUnitTestAdapterTests/NUnitEngineTests/NUnitDiscoveryTests.cs +++ b/src/NUnitTestAdapterTests/NUnitEngineTests/NUnitDiscoveryTests.cs @@ -1,4 +1,5 @@ using System.Linq; +using System.Xml; using NSubstitute; using NUnit.Framework; using NUnit.VisualStudio.TestAdapter.NUnitEngine; @@ -1114,5 +1115,36 @@ public void ThatSetUpFixtureWorksIssue824() new NUnitResults(XmlHelper.CreateXmlNode(SetupFixtureIssue824))); Assert.That(ndr, Is.Not.Null); } + + private const string ExtractFixturesHandlesProperties = + @" + + + + + + + + + + + + + + + + +"; + + [Test] + public void ThatExtractFixturesHandlesProperties() + { + var sut = new DiscoveryConverter(logger, settings); + XmlNode node = null; + Assert.DoesNotThrow(() => node = XmlHelper.CreateXmlNode(ExtractFixturesHandlesProperties)); + var ndr = sut.ConvertXml( + new NUnitResults(node)); + Assert.That(ndr, Is.Not.Null); + } } } diff --git a/src/NUnitTestAdapterTests/NUnitEngineTests/NUnitResultsTests.cs b/src/NUnitTestAdapterTests/NUnitEngineTests/NUnitResultsTests.cs index ee12aec9..5e8e8e6e 100644 --- a/src/NUnitTestAdapterTests/NUnitEngineTests/NUnitResultsTests.cs +++ b/src/NUnitTestAdapterTests/NUnitEngineTests/NUnitResultsTests.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapterTests/NUnitEngineTests/NUnitTestCaseTests.cs b/src/NUnitTestAdapterTests/NUnitEngineTests/NUnitTestCaseTests.cs index b1494a40..57d7a8db 100644 --- a/src/NUnitTestAdapterTests/NUnitEngineTests/NUnitTestCaseTests.cs +++ b/src/NUnitTestAdapterTests/NUnitEngineTests/NUnitTestCaseTests.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapterTests/NUnitEngineTests/NUnitTestEventsTests.cs b/src/NUnitTestAdapterTests/NUnitEngineTests/NUnitTestEventsTests.cs index f9ac479e..12ccaf1c 100644 --- a/src/NUnitTestAdapterTests/NUnitEngineTests/NUnitTestEventsTests.cs +++ b/src/NUnitTestAdapterTests/NUnitEngineTests/NUnitTestEventsTests.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2020-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2020-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the @@ -303,7 +303,7 @@ public void ThatTestCaseFailsCanBeParsedWithReason() @""; /// - /// Issue 811 + /// Issue 811. /// [Test] public void ThatExplicitTestFixtureWorksWithZeroStartTime() diff --git a/src/NUnitTestAdapterTests/NUnitEventListenerOutputTests.cs b/src/NUnitTestAdapterTests/NUnitEventListenerOutputTests.cs index 5dd19aed..9f323064 100644 --- a/src/NUnitTestAdapterTests/NUnitEventListenerOutputTests.cs +++ b/src/NUnitTestAdapterTests/NUnitEventListenerOutputTests.cs @@ -39,7 +39,7 @@ public class NUnitEventListenerOutputTests @""; /// - /// For Issue 811 + /// For Issue 811. /// private const string TestFinishWithExplicitFixture = @""; @@ -89,7 +89,7 @@ public void ThatTestOutputWithOnlyWhiteSpaceIsNotOutput() } /// - /// 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 + /// 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. /// [Test] public void ThatExplicitTestFixtureWorksWithZeroStartTime() diff --git a/src/NUnitTestAdapterTests/NUnitEventListenerTests.cs b/src/NUnitTestAdapterTests/NUnitEventListenerTests.cs index 0ca1887a..81f4e967 100644 --- a/src/NUnitTestAdapterTests/NUnitEventListenerTests.cs +++ b/src/NUnitTestAdapterTests/NUnitEventListenerTests.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2012-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2012-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapterTests/TestAdapterUtils.cs b/src/NUnitTestAdapterTests/TestAdapterUtils.cs index 8ac7ae76..5d7761cb 100644 --- a/src/NUnitTestAdapterTests/TestAdapterUtils.cs +++ b/src/NUnitTestAdapterTests/TestAdapterUtils.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2018-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2018-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapterTests/TestConverterForXmlTests.cs b/src/NUnitTestAdapterTests/TestConverterForXmlTests.cs index f3f7bf0d..d57b22ce 100644 --- a/src/NUnitTestAdapterTests/TestConverterForXmlTests.cs +++ b/src/NUnitTestAdapterTests/TestConverterForXmlTests.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2011-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2011-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapterTests/TestConverterTests.cs b/src/NUnitTestAdapterTests/TestConverterTests.cs index ba3eb6f7..15c3d742 100644 --- a/src/NUnitTestAdapterTests/TestConverterTests.cs +++ b/src/NUnitTestAdapterTests/TestConverterTests.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2011-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2011-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapterTests/TestDiscoveryTests.cs b/src/NUnitTestAdapterTests/TestDiscoveryTests.cs index b9bade7c..cf7e4419 100644 --- a/src/NUnitTestAdapterTests/TestDiscoveryTests.cs +++ b/src/NUnitTestAdapterTests/TestDiscoveryTests.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2011-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2011-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the diff --git a/src/NUnitTestAdapterTests/TestExecutionTests.cs b/src/NUnitTestAdapterTests/TestExecutionTests.cs index f27fa18f..e768fa0d 100644 --- a/src/NUnitTestAdapterTests/TestExecutionTests.cs +++ b/src/NUnitTestAdapterTests/TestExecutionTests.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2012-2020 Charlie Poole, Terje Sandstrom +// Copyright (c) 2012-2021 Charlie Poole, Terje Sandstrom // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the