コード例 #1
0
ファイル: Program.cs プロジェクト: Thorocaine/xcsharp
 private static string TestFilePath(Exercise exercise, TestClass testClass) => Path.Combine("..", "exercises", exercise.Name, TestFileName(testClass));
コード例 #2
0
ファイル: Program.cs プロジェクト: Thorocaine/xcsharp
        private static TestClass CreateTestClass(Exercise exercise)
        {
            var canonicalData = CanonicalDataParser.Parse(exercise.Name);

            return(exercise.CreateTestClass(canonicalData));
        }