From 81bb33402ddccdbf491922bcdf6b4b34bb17d961 Mon Sep 17 00:00:00 2001 From: David Arno Date: Mon, 6 Aug 2018 07:29:23 +0100 Subject: [PATCH] #44 - Fixed a bad filename for the Copy tests --- ...{WithExtensionsTests - Copy.cs => CopyExtensionsTests.cs} | 5 +++++ 1 file changed, 5 insertions(+) rename tests/SuccincT.Tests/SuccincT/Functional/{WithExtensionsTests - Copy.cs => CopyExtensionsTests.cs} (91%) diff --git a/tests/SuccincT.Tests/SuccincT/Functional/WithExtensionsTests - Copy.cs b/tests/SuccincT.Tests/SuccincT/Functional/CopyExtensionsTests.cs similarity index 91% rename from tests/SuccincT.Tests/SuccincT/Functional/WithExtensionsTests - Copy.cs rename to tests/SuccincT.Tests/SuccincT/Functional/CopyExtensionsTests.cs index 46b15b8..1860d57 100644 --- a/tests/SuccincT.Tests/SuccincT/Functional/WithExtensionsTests - Copy.cs +++ b/tests/SuccincT.Tests/SuccincT/Functional/CopyExtensionsTests.cs @@ -1,6 +1,7 @@ using NUnit.Framework; using SuccincT.Functional; using System; +using System.Diagnostics.CodeAnalysis; using static NUnit.Framework.Assert; namespace SuccincTTests.SuccincT.Functional @@ -90,6 +91,10 @@ private class TypeWithConstructorAndNoGetters public TypeWithConstructorAndNoGetters(int x) { } } + [SuppressMessage("ReSharper", "UnusedAutoPropertyAccessor.Local")] + [SuppressMessage("ReSharper", "MemberCanBePrivate.Local")] + [SuppressMessage("ReSharper", "UnusedMember.Local")] + [SuppressMessage("ReSharper", "UnusedParameter.Local")] private class TypeWithConstructorAndNoMatchingGetter { public TypeWithConstructorAndNoMatchingGetter(int a, int c) { }