forked from igorwojda/kotlin-coding-challenges
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchallenge.kt
45 lines (36 loc) · 1.01 KB
/
challenge.kt
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
package com.igorwojda.range.containsrange
import org.amshove.kluent.shouldBeEqualTo
import org.junit.jupiter.api.Test
private fun containsRange(range1: IntRange, range2: IntRange): Boolean {
TODO("not implemented")
}
private class Test {
@Test
fun `5-7 range contains 5-7`() {
containsRange(5..7, 5..7) shouldBeEqualTo true
}
@Test
fun `1-12 range contains 5-7`() {
containsRange(1..12, 5..7) shouldBeEqualTo true
}
@Test
fun `12-17 range contains 12-14`() {
containsRange(12..17, 12..14) shouldBeEqualTo true
}
@Test
fun `12-17 range contains 15-17`() {
containsRange(12..17, 15..17) shouldBeEqualTo true
}
@Test
fun `5-7 range contains 1-12`() {
containsRange(5..7, 1..12) shouldBeEqualTo false
}
@Test
fun `5-8 range contains 5-9`() {
containsRange(5..8, 5..9) shouldBeEqualTo false
}
@Test
fun `5-8 range contains 3-5`() {
containsRange(5..8, 3..5) shouldBeEqualTo false
}
}