コード例 #1
0
 public void TheZeroethOrLessFibonacciThrows()
 {
     Assert.Throws(typeof(ArgumentOutOfRangeException), () => EnquireCodeProblemSolutions.GetFibonacci(-1));
 }
コード例 #2
0
 public void ThereIsOneAnnogram()
 {
     Assert.True(EnquireCodeProblemSolutions.GetAnnograms(new[] { "google", "inlists", "enlist" }, "listen").Count() == 1);
 }