Skip to content
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.

Commit

Permalink
test: SentryId ToString
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-garcia committed Jan 6, 2019
1 parent 6390d95 commit 9f07554
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions test/Sentry.Protocol.Tests/SentryIdTests.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
using System;
using Xunit;

namespace Sentry.Protocol.Tests
{
public class SentryIdTests
{
[Fact]
public void ToString_Equal_GuidToStringN()
{
var expected = Guid.NewGuid();
SentryId actual = expected;
Assert.Equal(expected.ToString("N"), actual.ToString());
}
}
}

0 comments on commit 9f07554

Please sign in to comment.