-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathCheckPangramTests.fs
29 lines (24 loc) · 1.13 KB
/
CheckPangramTests.fs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
namespace Algorithms.Tests.Strings
open Microsoft.VisualStudio.TestTools.UnitTesting
open Algorithms.Strings
[<TestClass>]
type CheckPangramTests () =
[<TestMethod>]
[<DataRow("The quick brown fox jumps over the lazy dog", true)>]
[<DataRow("Waltz, bad nymph, for quick jigs vex.", true)>]
[<DataRow("Jived fox nymph grabs quick waltz.", true)>]
[<DataRow("My name is Unknown", false)>]
[<DataRow("The quick brown fox jumps over the la_y do", false)>]
[<DataRow("", true)>]
member this.CheckPangram (sentence:string, expected:bool) =
let actual = CheckPangram.checkPangram sentence
Assert.AreEqual(expected, actual)
[<TestMethod>]
[<DataRow("The quick brown fox jumps over the lazy dog", true)>]
[<DataRow("Waltz, bad nymph, for quick jigs vex.", false)>]
[<DataRow("Jived fox nymph grabs quick waltz.", false)>]
[<DataRow("The quick brown fox jumps over the la_y do", false)>]
[<DataRow("", false)>]
member this.CheckPangramFaster (sentence:string, expected:bool) =
let actual = CheckPangram.checkPangramFaster sentence
Assert.AreEqual(expected, actual)