fun <E> Expect<out Array<out E>>.asList(): Expect<List<E>> (source)
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.
Since
0.9.0
fun <E> Expect<Array<E>>.asList(assertionCreator: Expect<List<E>>.() -> Unit): Expect<Array<E>> (source)
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.
Since
0.9.0
@JvmName("byteArrAsList") fun Expect<ByteArray>.asList(): Expect<List<Byte>> (source)
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.
Since
0.9.0
@JvmName("byteArrAsList") fun Expect<ByteArray>.asList(assertionCreator: Expect<List<Byte>>.() -> Unit): Expect<ByteArray> (source)
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.
Since
0.9.0
@JvmName("charArrAsList") fun Expect<CharArray>.asList(): Expect<List<Char>> (source)
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.
Since
0.9.0
@JvmName("charArrAsList") fun Expect<CharArray>.asList(assertionCreator: Expect<List<Char>>.() -> Unit): Expect<CharArray> (source)
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.
Since
0.9.0
@JvmName("shortArrAsList") fun Expect<ShortArray>.asList(): Expect<List<Short>> (source)
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.
Since
0.9.0
@JvmName("shortArrAsList") fun Expect<ShortArray>.asList(assertionCreator: Expect<List<Short>>.() -> Unit): Expect<ShortArray> (source)
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.
Since
0.9.0
@JvmName("intArrAsList") fun Expect<IntArray>.asList(): Expect<List<Int>> (source)
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.
Since
0.9.0
@JvmName("intArrAsList") fun Expect<IntArray>.asList(assertionCreator: Expect<List<Int>>.() -> Unit): Expect<IntArray> (source)
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.
Since
0.9.0
@JvmName("longArrAsList") fun Expect<LongArray>.asList(): Expect<List<Long>> (source)
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.
Since
0.9.0
@JvmName("longArrAsList") fun Expect<LongArray>.asList(assertionCreator: Expect<List<Long>>.() -> Unit): Expect<LongArray> (source)
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.
Since
0.9.0
@JvmName("floatArrAsList") fun Expect<FloatArray>.asList(): Expect<List<Float>> (source)
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.
Since
0.9.0
@JvmName("floatArrAsList") fun Expect<FloatArray>.asList(assertionCreator: Expect<List<Float>>.() -> Unit): Expect<FloatArray> (source)
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.
Since
0.9.0
@JvmName("doubleArrAsList") fun Expect<DoubleArray>.asList(): Expect<List<Double>> (source)
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.
Since
0.9.0
@JvmName("doubleArrAsList") fun Expect<DoubleArray>.asList(assertionCreator: Expect<List<Double>>.() -> Unit): Expect<DoubleArray> (source)
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.
Since
0.9.0
@JvmName("boolArrAsList") fun Expect<BooleanArray>.asList(): Expect<List<Boolean>> (source)
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.
Since
0.9.0
@JvmName("boolArrAsList") fun Expect<BooleanArray>.asList(assertionCreator: Expect<List<Boolean>>.() -> Unit): Expect<BooleanArray> (source)
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.
Since
0.9.0