@@ -2,82 +2,82 @@ import org.scalatest.{Matchers, FlatSpec}
2
2
3
3
class RaindropsTest extends FlatSpec with Matchers {
4
4
it should " convert 1" in {
5
- Raindrops () .convert(1 ) should equal(" 1" )
5
+ Raindrops .convert(1 ) should equal(" 1" )
6
6
}
7
7
8
8
it should " convert 3" in {
9
9
pending
10
- Raindrops () .convert(3 ) should equal(" Pling" )
10
+ Raindrops .convert(3 ) should equal(" Pling" )
11
11
}
12
12
13
13
it should " convert 5" in {
14
14
pending
15
- Raindrops () .convert(5 ) should equal(" Plang" )
15
+ Raindrops .convert(5 ) should equal(" Plang" )
16
16
}
17
17
18
18
it should " convert 7" in {
19
19
pending
20
- Raindrops () .convert(7 ) should equal(" Plong" )
20
+ Raindrops .convert(7 ) should equal(" Plong" )
21
21
}
22
22
23
23
it should " convert 6" in {
24
24
pending
25
- Raindrops () .convert(6 ) should equal(" Pling" )
25
+ Raindrops .convert(6 ) should equal(" Pling" )
26
26
}
27
27
28
28
it should " convert 9" in {
29
29
pending
30
- Raindrops () .convert(9 ) should equal(" Pling" )
30
+ Raindrops .convert(9 ) should equal(" Pling" )
31
31
}
32
32
33
33
it should " convert 10" in {
34
34
pending
35
- Raindrops () .convert(10 ) should equal(" Plang" )
35
+ Raindrops .convert(10 ) should equal(" Plang" )
36
36
}
37
37
38
38
it should " convert 14" in {
39
39
pending
40
- Raindrops () .convert(14 ) should equal(" Plong" )
40
+ Raindrops .convert(14 ) should equal(" Plong" )
41
41
}
42
42
43
43
it should " convert 15" in {
44
44
pending
45
- Raindrops () .convert(15 ) should equal(" PlingPlang" )
45
+ Raindrops .convert(15 ) should equal(" PlingPlang" )
46
46
}
47
47
48
48
it should " convert 21" in {
49
49
pending
50
- Raindrops () .convert(21 ) should equal(" PlingPlong" )
50
+ Raindrops .convert(21 ) should equal(" PlingPlong" )
51
51
}
52
52
53
53
it should " convert 25" in {
54
54
pending
55
- Raindrops () .convert(25 ) should equal(" Plang" )
55
+ Raindrops .convert(25 ) should equal(" Plang" )
56
56
}
57
57
58
58
it should " convert 35" in {
59
59
pending
60
- Raindrops () .convert(35 ) should equal(" PlangPlong" )
60
+ Raindrops .convert(35 ) should equal(" PlangPlong" )
61
61
}
62
62
63
63
it should " convert 49" in {
64
64
pending
65
- Raindrops () .convert(49 ) should equal(" Plong" )
65
+ Raindrops .convert(49 ) should equal(" Plong" )
66
66
}
67
67
68
68
it should " convert 52" in {
69
69
pending
70
- Raindrops () .convert(52 ) should equal(" 52" )
70
+ Raindrops .convert(52 ) should equal(" 52" )
71
71
}
72
72
73
73
it should " convert 105" in {
74
74
pending
75
- Raindrops () .convert(105 ) should equal(" PlingPlangPlong" )
75
+ Raindrops .convert(105 ) should equal(" PlingPlangPlong" )
76
76
}
77
77
78
78
it should " convert 12121" in {
79
79
pending
80
- Raindrops () .convert(12121 ) should equal(" 12121" )
80
+ Raindrops .convert(12121 ) should equal(" 12121" )
81
81
}
82
82
}
83
83
0 commit comments