-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathChapter21Spec.scala
78 lines (62 loc) · 2.32 KB
/
Chapter21Spec.scala
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
import Chapter11.Fraction
import TestUtils.withOutputAndResult
import java.awt.Point
import java.io.StringReader
import org.scalatest.{FlatSpec, Matchers}
import scala.language.postfixOps
class Chapter21Spec extends FlatSpec with Matchers {
"PercentAdder" should "define an operator `+%` and use implicit conversion" in {
import Chapter21._
120 +% 10 shouldBe 132
}
"Int2Factorial" should "define an operator `!` and use implicit conversion" in {
import Chapter21._
(5!) shouldBe 120
}
"FluentReader" should "provide fluent APIs for reading data from the console" in {
//given
import Chapter21._
val input = """Viktor
|35
|80
|""".stripMargin
//when
val (out: String, result: FluentReader) = withOutputAndResult {
Console.withIn(new StringReader(input)) {
Read in aString askingFor "Your name" and
anInt askingFor "Your age" and
aDouble askingFor "Your weight"
}
}
//then
result.getData.mkString("\n") shouldBe """(Your name,Viktor)
|(Your age,35)
|(Your weight,80.0)""".stripMargin
out shouldBe """Your name: Your age: Your weight: """.stripMargin
}
"smaller" should "work with Fraction instances" in {
import Chapter21._
//when & then
smaller(Fraction(1, 7), Fraction(2, 9)) shouldBe Fraction(1, 7)
smaller(Fraction(1, 7), Fraction(1, 7)) shouldBe Fraction(1, 7)
smaller(Fraction(0, 7), Fraction(0, 9)) shouldBe Fraction(0, 9)
}
"LexicographicPointOrdering" should "compare Point objects by lexicographic comparison" in {
//given
import Chapter21.LexicographicPointOrdering
//when & then
new Point(1, 1).compareTo(new Point(1, 1)) shouldBe 0
new Point(1, 1) should be < new Point(2, 1)
new Point(1, 1) should be < new Point(1, 2)
new Point(1, -3) should be < new Point(1, 2)
}
"DistancePointOrdering" should "compare Point objects by distance to the origin" in {
//given
import Chapter21.DistancePointOrdering
//when & then
new Point(1, 1).compareTo(new Point(1, 1)) shouldBe 0
new Point(-2, 1).compareTo(new Point(2, 1)) shouldBe 0
new Point(1, 1) should be < new Point(1, 2)
new Point(1, -3) should be > new Point(1, 2)
}
}