tracks/fsharp/generators/Common.fs in trackler-2.2.1.77 vs tracks/fsharp/generators/Common.fs in trackler-2.2.1.78
- old
+ new
@@ -29,16 +29,21 @@
type TestMethodBodyAssert =
{ Sut: string
Expected: string }
-type TestClass =
+type TestFile =
{ Version: string
ExerciseName: string
TestModuleName: string
TestedModuleName: string
Namespaces: string list
- Methods: string list }
+ Methods: string list
+ Setup: string }
+
+type TestFileFormat =
+ | Module
+ | Class
module Logging =
let setupLogger() =
Log.Logger <- LoggerConfiguration()
.WriteTo.LiterateConsole()
\ No newline at end of file