We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6285e7c commit a864f44Copy full SHA for a864f44
generators.new/TestCaseTransformer.cs
@@ -20,13 +20,13 @@ internal static TestCaseTransformer Create(Exercise exercise) =>
20
};
21
}
22
23
-class TestCaseTransformer
+internal class TestCaseTransformer
24
{
25
protected virtual TestCase UpdateTestCase(TestCase testCase) => testCase;
26
27
protected virtual TestCase[] AddOrRemoveTestCases(TestCase[] testCases) => testCases;
28
29
- public static TestCase[] Transform(Exercise exercise, TestCase[] testCases) =>
+ internal static TestCase[] Transform(Exercise exercise, TestCase[] testCases) =>
30
TestCaseTransformerFactory.Create(exercise).AddOrRemoveTestCases(testCases)
31
.Select(TestCaseTransformerFactory.Create(exercise).UpdateTestCase)
32
.ToArray();
0 commit comments