Skip to content

Commit

Permalink
Update the copyright to 2017
Browse files Browse the repository at this point in the history
  • Loading branch information
rprouse committed Jan 10, 2017
1 parent 5f78d9b commit 4e6f838
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion 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 Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion nuget/framework/nunit.nuspec
Expand Up @@ -26,7 +26,7 @@ Supported platforms:
<releaseNotes>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.</releaseNotes> <releaseNotes>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.</releaseNotes>
<language>en-US</language> <language>en-US</language>
<tags>nunit test testing tdd framework fluent assert theory plugin addin</tags> <tags>nunit test testing tdd framework fluent assert theory plugin addin</tags>
<copyright>Copyright (c) 2016 Charlie Poole</copyright> <copyright>Copyright (c) 2017 Charlie Poole</copyright>
<dependencies> <dependencies>
<group targetFramework="netstandard1.6"> <group targetFramework="netstandard1.6">
<dependency id="NETStandard.Library" version="1.6.0" /> <dependency id="NETStandard.Library" version="1.6.0" />
Expand Down
2 changes: 1 addition & 1 deletion nuget/nunitlite/nunitlite.nuspec
Expand Up @@ -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.</description> 3. Add your tests to the test project and simply start the project to execute them.</description>
<language>en-US</language> <language>en-US</language>
<tags>test unit testing tdd framework fluent assert device phone embedded</tags> <tags>test unit testing tdd framework fluent assert device phone embedded</tags>
<copyright>Copyright (c) 2016 Charlie Poole</copyright> <copyright>Copyright (c) 2017 Charlie Poole</copyright>
<dependencies> <dependencies>
<group> <group>
<dependency id="NUnit" version="[$version$]" /> <dependency id="NUnit" version="[$version$]" />
Expand Down
6 changes: 3 additions & 3 deletions src/CommonAssemblyInfo.cs
Expand Up @@ -8,10 +8,10 @@
// distribute, sublicense, and/or sell copies of the Software, and to // distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to // permit persons to whom the Software is furnished to do so, subject to
// the following conditions: // the following conditions:
// //
// The above copyright notice and this permission notice shall be // The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software. // included in all copies or substantial portions of the Software.
// //
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
Expand All @@ -28,7 +28,7 @@
// //
[assembly: AssemblyCompany("NUnit Software")] [assembly: AssemblyCompany("NUnit Software")]
[assembly: AssemblyProduct("NUnit 3")] [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")] [assembly: AssemblyTrademark("NUnit is a trademark of NUnit Software")]


#if PORTABLE #if PORTABLE
Expand Down
8 changes: 4 additions & 4 deletions src/NUnitFramework/nunitlite/TextUI.cs
Expand Up @@ -76,7 +76,7 @@ public void DisplayHeader()
Assembly executingAssembly = GetType().GetTypeInfo().Assembly; Assembly executingAssembly = GetType().GetTypeInfo().Assembly;
AssemblyName assemblyName = AssemblyHelper.GetAssemblyName(executingAssembly); AssemblyName assemblyName = AssemblyHelper.GetAssemblyName(executingAssembly);
Version version = assemblyName.Version; Version version = assemblyName.Version;
string copyright = "Copyright (C) 2016, Charlie Poole"; string copyright = "Copyright (C) 2017, Charlie Poole";
string build = ""; string build = "";


var copyrightAttr = executingAssembly.GetCustomAttribute<AssemblyCopyrightAttribute>(); var copyrightAttr = executingAssembly.GetCustomAttribute<AssemblyCopyrightAttribute>();
Expand Down Expand Up @@ -459,10 +459,10 @@ public void DisplayErrors(IList<string> messages)


private void DisplayErrorsFailuresAndWarnings(ITestResult result) private void DisplayErrorsFailuresAndWarnings(ITestResult result)
{ {
bool display = bool display =
result.ResultState.Status == TestStatus.Failed || result.ResultState.Status == TestStatus.Failed ||
result.ResultState.Status == TestStatus.Warning; result.ResultState.Status == TestStatus.Warning;

if (result.Test.IsSuite) if (result.Test.IsSuite)
{ {
if (display) if (display)
Expand Down

0 comments on commit 4e6f838

Please sign in to comment.