Skip to content

Commit 70d164c

Browse files
author
n.bitounis
committed
Added test for primes list.
1 parent a2177fc commit 70d164c

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
using DataStructures.Common;
2+
using Xunit;
3+
4+
namespace UnitTest.AlgorithmsTests
5+
{
6+
public class PrimeListTest
7+
{
8+
[Fact]
9+
public void DoTest()
10+
{
11+
var instance = PrimesList.Instance;
12+
Assert.Equal(10000, instance.Count);
13+
}
14+
}
15+
}

0 commit comments

Comments
 (0)