summaryrefslogtreecommitdiff
path: root/core/source/test/scala/com/rockymadden/stringmetric/AlphabetSpec.scala
blob: 5bb503ad920029e18f4fed5fe16bb045c46c48ec (plain) (blame)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package com.rockymadden.stringmetric

import com.rockymadden.stringmetric.Alphabet.{Alpha, Vowel}
import org.junit.runner.RunWith
import org.scalatest.junit.JUnitRunner

@RunWith(classOf[JUnitRunner])
final class AlphabetSpec extends ScalaTest {
	"Alphabet" should provide {
		"an overloaded isSuperset method which accepts Char" when passed {
			"non-alphabet argument" should returns {
				"false" in {
					Alpha isSuperset '0' should be (false)
				}
			}
			"alphabet argument" should returns {
				"true" in {
					Alpha isSuperset 'a' should be (true)
					Alpha isSuperset 'A' should be (true)
				}
			}
			"non-vowel argument" should returns {
				"false" in {
					Vowel isSuperset 'y' should be (false)
				}
			}
			"vowel argument" should returns {
				"true" in {
					Vowel isSuperset 'a' should be (true)
					Vowel isSuperset 'A' should be (true)
				}
			}
		}
		"an overloaded isSuperset method which accepts Array[Char]" when passed {
			"empty argument" should returns {
				"false" in {
					Alpha isSuperset Array.empty[Char] should be (false)
				}
			}
			"non-alphabet argument" should returns {
				"false" in {
					Alpha isSuperset "hi!".toCharArray should be (false)
					Alpha isSuperset "helloworld!".toCharArray should be (false)
				}
			}
			"alphabet argument" should returns {
				"true" in {
					Alpha isSuperset "hi".toCharArray should be (true)
					Alpha isSuperset "helloworld".toCharArray should be (true)
					Alpha isSuperset "HI".toCharArray should be (true)
					Alpha isSuperset "HELLOWORLD".toCharArray should be (true)
				}
			}
			"non-vowel argument" should returns {
				"false" in {
					Vowel isSuperset "y".toCharArray should be (false)
				}
			}
			"vowel argument" should returns {
				"true" in {
					Vowel isSuperset "a".toCharArray should be (true)
					Vowel isSuperset "A".toCharArray should be (true)
				}
			}
		}
		"an overloaded isSuperset method which accepts String" when passed {
			"empty argument" should returns {
				"false" in {
					Alpha isSuperset "" should be (false)
				}
			}
			"non-alphabet argument" should returns {
				"false" in {
					Alpha isSuperset "helloworld!" should be (false)
				}
			}
			"alphabet argument" should returns {
				"true" in {
					Alpha isSuperset "helloworld" should be (true)
					Alpha isSuperset "HELLOWORLD" should be (true)
				}
			}
			"non-vowel argument" should returns {
				"false" in {
					Vowel isSuperset "y" should be (false)
				}
			}
			"vowel argument" should returns {
				"true" in {
					Vowel isSuperset "a" should be (true)
					Vowel isSuperset "A" should be (true)
				}
			}
		}
	}
}