fun <E> Expect<out Array<out E>>.asList(): Expect<List<E>>
Turns Expect<Array<E>>
into Expect<List<E>>
.
The transformation as such is not reflected in reporting.
Use feature(Array<out E>::asList)
if you want to show the transformation in reporting.
Return
The newly created Expect for the transformed subject.
fun <E> Expect<Array<E>>.asList(assertionCreator: Expect<List<E>>.() -> Unit): Expect<Array<E>>
Expects that the subject of the assertion holds all assertions the given assertionCreator creates for the subject as List.
The transformation as such is not reflected in reporting.
Use feature(Array<out E>::asList, assertionCreator)
if you want to show the transformation in reporting.
Return
The newly created Expect for the transformed subject.
@JvmName("byteArrAsList") fun Expect<ByteArray>.asList(): Expect<List<Byte>>
Turns Expect<CharArray>
into Expect<List<Byte>>
.
The transformation as such is not reflected in reporting.
Use feature(ByteArray::asList)
if you want to show the transformation in reporting.
Return
The newly created Expect for the transformed subject.
@JvmName("byteArrAsList") fun Expect<ByteArray>.asList(assertionCreator: Expect<List<Byte>>.() -> Unit): Expect<ByteArray>
Expects that the subject of the assertion holds all assertions the given assertionCreator creates for the subject as List.
The transformation as such is not reflected in reporting.
Use feature(ByteArray::asList, assertionCreator)
if you want to show the transformation in reporting.
Return
The newly created Expect for the transformed subject.
@JvmName("charArrAsList") fun Expect<CharArray>.asList(): Expect<List<Char>>
Turns Expect<CharArray>
into Expect<List<Char>>
.
The transformation as such is not reflected in reporting.
Use feature(CharArray::asList)
if you want to show the transformation in reporting.
Return
The newly created Expect for the transformed subject.
@JvmName("charArrAsList") fun Expect<CharArray>.asList(assertionCreator: Expect<List<Char>>.() -> Unit): Expect<CharArray>
Expects that the subject of the assertion holds all assertions the given assertionCreator creates for the subject as List.
The transformation as such is not reflected in reporting.
Use feature(CharArray::asList, assertionCreator)
if you want to show the transformation in reporting.
Return
The newly created Expect for the transformed subject.
@JvmName("shortArrAsList") fun Expect<ShortArray>.asList(): Expect<List<Short>>
Turns Expect<ShortArray>
into Expect<List<Short>>
.
The transformation as such is not reflected in reporting.
Use feature(ShortArray::asList)
if you want to show the transformation in reporting.
Return
The newly created Expect for the transformed subject.
@JvmName("shortArrAsList") fun Expect<ShortArray>.asList(assertionCreator: Expect<List<Short>>.() -> Unit): Expect<ShortArray>
Expects that the subject of the assertion holds all assertions the given assertionCreator creates for the subject as List.
The transformation as such is not reflected in reporting.
Use feature(ShortArray::asList, assertionCreator)
if you want to show the transformation in reporting.
Return
The newly created Expect for the transformed subject.
@JvmName("intArrAsList") fun Expect<IntArray>.asList(): Expect<List<Int>>
Turns Expect<IntArray>
into Expect<List<Int>>
.
The transformation as such is not reflected in reporting.
Use feature(IntArray::asList)
if you want to show the transformation in reporting.
Return
The newly created Expect for the transformed subject.
@JvmName("intArrAsList") fun Expect<IntArray>.asList(assertionCreator: Expect<List<Int>>.() -> Unit): Expect<IntArray>
Expects that the subject of the assertion holds all assertions the given assertionCreator creates for the subject as List.
The transformation as such is not reflected in reporting.
Use feature(IntArray::asList, assertionCreator)
if you want to show the transformation in reporting.
Return
The newly created Expect for the transformed subject.
@JvmName("longArrAsList") fun Expect<LongArray>.asList(): Expect<List<Long>>
Turns Expect<LongArray>
into Expect<List<Double>>
.
The transformation as such is not reflected in reporting.
Use feature(LongArray::asList)
if you want to show the transformation in reporting.
Return
The newly created Expect for the transformed subject.
@JvmName("longArrAsList") fun Expect<LongArray>.asList(assertionCreator: Expect<List<Long>>.() -> Unit): Expect<LongArray>
Expects that the subject of the assertion holds all assertions the given assertionCreator creates for the subject as List.
The transformation as such is not reflected in reporting.
Use feature(LongArray::asList, assertionCreator)
if you want to show the transformation in reporting.
Return
The newly created Expect for the transformed subject.
@JvmName("floatArrAsList") fun Expect<FloatArray>.asList(): Expect<List<Float>>
Turns Expect<FloatArray>
into Expect<List<Float>>
.
The transformation as such is not reflected in reporting.
Use feature(FloatArray::asList)
if you want to show the transformation in reporting.
Return
The newly created Expect for the transformed subject.
@JvmName("floatArrAsList") fun Expect<FloatArray>.asList(assertionCreator: Expect<List<Float>>.() -> Unit): Expect<FloatArray>
Expects that the subject of the assertion holds all assertions the given assertionCreator creates for the subject as List.
The transformation as such is not reflected in reporting.
Use feature(FloatArray::asList, assertionCreator)
if you want to show the transformation in reporting.
Return
The newly created Expect for the transformed subject.
@JvmName("doubleArrAsList") fun Expect<DoubleArray>.asList(): Expect<List<Double>>
Turns Expect<DoubleArray>
into Expect<List<Double>>
.
The transformation as such is not reflected in reporting.
Use feature(DoubleArray::asList)
if you want to show the transformation in reporting.
Return
The newly created Expect for the transformed subject.
@JvmName("doubleArrAsList") fun Expect<DoubleArray>.asList(assertionCreator: Expect<List<Double>>.() -> Unit): Expect<DoubleArray>
Expects that the subject of the assertion holds all assertions the given assertionCreator creates for the subject as List.
The transformation as such is not reflected in reporting.
Use feature(DoubleArray::asList, assertionCreator)
if you want to show the transformation in reporting.
Return
The newly created Expect for the transformed subject.
@JvmName("boolArrAsList") fun Expect<BooleanArray>.asList(): Expect<List<Boolean>>
Turns Expect<BooleanArray>
into Expect<List<Boolean>>
.
The transformation as such is not reflected in reporting.
Use feature(BooleanArray::asList)
if you want to show the transformation in reporting.
Return
The newly created Expect for the transformed subject.
@JvmName("boolArrAsList") fun Expect<BooleanArray>.asList(assertionCreator: Expect<List<Boolean>>.() -> Unit): Expect<BooleanArray>
Expects that the subject of the assertion holds all assertions the given assertionCreator creates for the subject as List.
The transformation as such is not reflected in reporting.
Use feature(BooleanArray::asList, assertionCreator)
if you want to show the transformation in reporting.
Return
The newly created Expect for the transformed subject.