Skip to content

Commit 3817bed

Browse files
authored
chore: sharping (#152)
1 parent 5eb5079 commit 3817bed

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/cs/Bootsharp.Common.Test/Mocks.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,9 @@ public interface IBackend;
88
public interface IFrontend;
99
public class Backend : IBackend;
1010
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);
1116
}

src/cs/Bootsharp.Common.Test/SerializerTest.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@
55

66
namespace Bootsharp.Common.Test;
77

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-
138
public class SerializerTest
149
{
1510
public SerializerTest ()

0 commit comments

Comments
 (0)