Skip to content

Commit 542d7f6

Browse files
committed
Renamed test class
1 parent 1ea2f53 commit 542d7f6

File tree

1 file changed

+3
-3
lines changed
  • test/Thinktecture.Runtime.Extensions.MessagePack.Tests/Formatters/ThinktectureMessagePackFormatterTests

1 file changed

+3
-3
lines changed

test/Thinktecture.Runtime.Extensions.MessagePack.Tests/Formatters/ThinktectureMessagePackFormatterTests/RoundtripSerialize.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212

1313
namespace Thinktecture.Runtime.Tests.Formatters.ThinktectureMessagePackFormatterTests;
1414

15-
public partial class Serialize
15+
public partial class RoundTripSerialize
1616
{
17-
private static readonly MethodInfo _serializeRoundTripMethodInfo = typeof(Serialize).GetMethods(BindingFlags.Instance | BindingFlags.NonPublic)
17+
private static readonly MethodInfo _serializeRoundTripMethodInfo = typeof(RoundTripSerialize).GetMethods(BindingFlags.Instance | BindingFlags.NonPublic)
1818
.SingleOrDefault(m => m.Name == nameof(RoundTrip) && m.GetParameters().Length == 1)
1919
?? throw new Exception($"Method '{nameof(RoundTrip)}' not found.");
2020

2121
private readonly MessagePackSerializerOptions _options;
2222

23-
public Serialize()
23+
public RoundTripSerialize()
2424
{
2525
var resolver = CompositeResolver.Create(ThinktectureMessageFormatterResolver.Instance, StandardResolver.Instance);
2626
_options = MessagePackSerializerOptions.Standard.WithResolver(resolver);

0 commit comments

Comments
 (0)