We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdc8f26 commit 4440b06Copy full SHA for 4440b06
1 file changed
ConventionTests/Conventions/__Run.cs
@@ -2,13 +2,15 @@
2
using System.IO;
3
using System.Linq;
4
using System.Reflection;
5
+using System.Runtime.CompilerServices;
6
using ApprovalTests.Reporters;
7
using NUnit.Framework;
8
9
[assembly: UseReporter(typeof (DiffReporter))]
10
11
namespace ConventionTests
12
{
13
+
14
[TestFixture]
15
public class ConventionTestsRunner
16
@@ -53,6 +55,7 @@ private static bool IsConventionTest(Type type)
53
55
54
56
[Test]
57
[TestCaseSource("Conventions")]
58
+ [MethodImpl(MethodImplOptions.NoInlining)]
59
public void Run(IConventionTest test)
60
61
test.Execute();
0 commit comments