doc / ch.tutteli.atrium.api.infix.en_GB / get

get

infix fun <E, T : List<E>> Expect<T>.get(index: Int): Expect<E> (source)

Expects that the given index is within the bounds of the subject of this expectation (a List) and returns an Expect for the element at that position.

val list = listOf(1, 2, 3)

expect(list) get 0 toBeGreaterThan 0 toBeLessThan 2
//               |                 | subject is still of type Int (still 1)
//               | subject is now of type Int (actually 1)

fails {
    expect(list) get 3 toBeLessThan 0
    //             |        | not reported
    //             | fails because index 3 is out of bound
    // use `get index(elementIndex) { ... }` if you want that all expectations are evaluated
} message {
    toContain("index out of bounds")
    notToContain("is less than: 0")
}

fails {
    expect(list) get 0 toBeGreaterThan 2 toBeLessThan 0
    //               |        |            | not reported because `toBeGreaterThan 2` already fails
    //               |        | fails
    //               | subject is now of type Int (actually 1)
    expect(list) get 0 toBeLessThan 0
    // use `get index(elementIndex) { ... }` if you want that all expectations are evaluated

} message {
    toContain("${toBeGreaterThanDescr}: 2")
    notToContain("${toBeLessThanDescr}: 0")
}

Return
The newly created Expect for the element at position index.

infix fun <E, T : List<E>> Expect<T>.get(index: IndexWithCreator<E>): Expect<T> (source)

Expects that the given index is within the bounds of the subject of this expectation (a List) and that the element at that position holds all assertions the given IndexWithCreator.assertionCreator creates for it.

Use the function index(Int) { ... } to create an IndexWithCreator.

val list = listOf(1, 2, 3)

expect(list) get index(0) {  // subject inside this block is of type Int (actually 1)
    it toBeLessThan 2
    it toBeGreaterThan 0
}

expect(list) get index(1) {  // subject inside this block is of type Int (actually 2)
    it toBeLessThan 3
    it toBeGreaterThan 1
}

fails {
    // all expectations are evaluated inside an expectation group block; for more details:
    // https://github.com/robstoll/atrium#define-single-assertions-or-assertion-groups

    expect(list) get index(0) {
        it toBeGreaterThan 2    // fails
        it toBeLessThan 0       // still evaluated even though `isGreaterThan(2)` already fails,
        //                         use `get index` if you want a fail fast behaviour
    }
} messageToContain values(
    "${toBeGreaterThanDescr}: 2",
    "${toBeLessThanDescr}: 0"
)

Return
an Expect for the subject of this expectation.