File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
src/cs/Bootsharp.Common.Test Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -8,4 +8,9 @@ public interface IBackend;
8
8
public interface IFrontend;
9
9
public class Backend : IBackend ;
10
10
public class Frontend : IFrontend ;
11
+
12
+ public enum MockEnum { Foo , Bar }
13
+ public record MockItem ( string Id ) ;
14
+ public record MockItemWithEnum ( MockEnum ? Enum ) ;
15
+ public record MockRecord ( IReadOnlyList < MockItem > Items ) ;
11
16
}
Original file line number Diff line number Diff line change 5
5
6
6
namespace Bootsharp . Common . Test ;
7
7
8
- public enum MockEnum { Foo , Bar }
9
- public record MockItem ( string Id ) ;
10
- public record MockItemWithEnum ( MockEnum ? Enum ) ;
11
- public record MockRecord ( IReadOnlyList < MockItem > Items ) ;
12
-
13
8
public class SerializerTest
14
9
{
15
10
public SerializerTest ( )
You can’t perform that action at this time.
0 commit comments