Sha256: fecc6e7e032b5bd08e26b1e8d53cc30d14dc44f36affd65f7c026bc5a7db1221
Contents?: true
Size: 717 Bytes
Versions: 65
Compression:
Stored size: 717 Bytes
Contents
using Xunit; using System; public class NthPrimeTest { [Fact] public void First_prime() { Assert.Equal(2, NthPrime.Prime(1)); } [Fact(Skip = "Remove to run test")] public void Second_prime() { Assert.Equal(3, NthPrime.Prime(2)); } [Fact(Skip = "Remove to run test")] public void Sixth_prime() { Assert.Equal(13, NthPrime.Prime(6)); } [Fact(Skip = "Remove to run test")] public void Big_prime() { Assert.Equal(104743, NthPrime.Prime(10001)); } [Fact(Skip = "Remove to run test")] public void There_is_no_zeroth_prime() { Assert.Throws<ArgumentOutOfRangeException>(() => NthPrime.Prime(0)); } }
Version data entries
65 entries across 65 versions & 1 rubygems