Skip to content

Commit

Permalink
#44 - Fixed a bad filename for the Copy tests
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidArno committed Aug 6, 2018
1 parent 90b841f commit 81bb334
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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) { }
Expand Down

0 comments on commit 81bb334

Please sign in to comment.