diff --git a/LICENSE.txt b/LICENSE.txt index 1a8c7b8ffd..fc6cd32fdb 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2016 Charlie Poole +Copyright (c) 2017 Charlie Poole Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/nuget/framework/nunit.nuspec b/nuget/framework/nunit.nuspec index 01ea530c09..93acee252d 100644 --- a/nuget/framework/nunit.nuspec +++ b/nuget/framework/nunit.nuspec @@ -26,7 +26,7 @@ Supported platforms: This package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit3-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly. en-US nunit test testing tdd framework fluent assert theory plugin addin - Copyright (c) 2016 Charlie Poole + Copyright (c) 2017 Charlie Poole diff --git a/nuget/nunitlite/nunitlite.nuspec b/nuget/nunitlite/nunitlite.nuspec index bf7a901710..b1de5c4aca 100644 --- a/nuget/nunitlite/nunitlite.nuspec +++ b/nuget/nunitlite/nunitlite.nuspec @@ -25,7 +25,7 @@ How to use this package: 3. Add your tests to the test project and simply start the project to execute them. en-US test unit testing tdd framework fluent assert device phone embedded - Copyright (c) 2016 Charlie Poole + Copyright (c) 2017 Charlie Poole diff --git a/src/CommonAssemblyInfo.cs b/src/CommonAssemblyInfo.cs index 95932dcd9f..341d70bf4a 100644 --- a/src/CommonAssemblyInfo.cs +++ b/src/CommonAssemblyInfo.cs @@ -8,10 +8,10 @@ // distribute, sublicense, and/or sell copies of the Software, and to // permit persons to whom the Software is furnished to do so, subject to // the following conditions: -// +// // The above copyright notice and this permission notice shall be // included in all copies or substantial portions of the Software. -// +// // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND @@ -28,7 +28,7 @@ // [assembly: AssemblyCompany("NUnit Software")] [assembly: AssemblyProduct("NUnit 3")] -[assembly: AssemblyCopyright("Copyright (C) 2016 Charlie Poole")] +[assembly: AssemblyCopyright("Copyright (C) 2017 Charlie Poole")] [assembly: AssemblyTrademark("NUnit is a trademark of NUnit Software")] #if PORTABLE diff --git a/src/NUnitFramework/nunitlite/TextUI.cs b/src/NUnitFramework/nunitlite/TextUI.cs index f1f006b529..175ab60440 100644 --- a/src/NUnitFramework/nunitlite/TextUI.cs +++ b/src/NUnitFramework/nunitlite/TextUI.cs @@ -76,7 +76,7 @@ public void DisplayHeader() Assembly executingAssembly = GetType().GetTypeInfo().Assembly; AssemblyName assemblyName = AssemblyHelper.GetAssemblyName(executingAssembly); Version version = assemblyName.Version; - string copyright = "Copyright (C) 2016, Charlie Poole"; + string copyright = "Copyright (C) 2017, Charlie Poole"; string build = ""; var copyrightAttr = executingAssembly.GetCustomAttribute(); @@ -459,10 +459,10 @@ public void DisplayErrors(IList messages) private void DisplayErrorsFailuresAndWarnings(ITestResult result) { - bool display = - result.ResultState.Status == TestStatus.Failed || + bool display = + result.ResultState.Status == TestStatus.Failed || result.ResultState.Status == TestStatus.Warning; - + if (result.Test.IsSuite) { if (display)