Skip to content

Commit

Permalink
Set tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkCiliaVincenti committed Nov 24, 2024
1 parent 03964b8 commit 0821859
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions ReadHeavyCollections.Tests/SetTests.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
using Xunit;

namespace ReadHeavyCollections.Tests;

public class SetTests
{
[Fact]
public void ReadTest()
{
ReadHeavySet<int> readHeavySet = [1];
Assert.Equal(1, readHeavySet.First());
}
}

0 comments on commit 0821859

Please sign in to comment.