atrium-api-cc-en_UK
Module Contents
alltypes
Module Contents
open class CharSequenceContainsAtLeastCheckerBuilder < T : CharSequence , S : SearchBehaviour > : CharSequenceContainsAtLeastCheckerBuilderBase < T , S >
open class CharSequenceContainsAtMostCheckerBuilder < T : CharSequence , S : SearchBehaviour > : CharSequenceContainsAtMostCheckerBuilderBase < T , S >
open class CharSequenceContainsButAtMostCheckerBuilder < T : CharSequence , S : SearchBehaviour > : CharSequenceContainsButAtMostCheckerBuilderBase < T , S >
open class CharSequenceContainsExactlyCheckerBuilder < T : CharSequence , S : SearchBehaviour > : CharSequenceContainsExactlyCheckerBuilderBase < T , S >
open class CharSequenceContainsNotOrAtMostCheckerBuilder < T : CharSequence , S : SearchBehaviour > : CharSequenceContainsNotOrAtMostCheckerBuilderBase < T , S >
open class IterableContainsAtLeastCheckerBuilder < E , T : Iterable < E > > : IterableContainsAtLeastCheckerBuilderBase < E , T , IterableContainsInAnyOrderSearchBehaviour >
open class IterableContainsAtMostCheckerBuilder < E , T : Iterable < E > > : IterableContainsAtMostCheckerBuilderBase < E , T , IterableContainsInAnyOrderSearchBehaviour >
open class IterableContainsButAtMostCheckerBuilder < E , T : Iterable < E > > : IterableContainsButAtMostCheckerBuilderBase < E , T , IterableContainsInAnyOrderSearchBehaviour >
open class IterableContainsExactlyCheckerBuilder < E , T : Iterable < E > > : IterableContainsExactlyCheckerBuilderBase < E , T , IterableContainsInAnyOrderSearchBehaviour >
open class IterableContainsNotOrAtMostCheckerBuilder < E , T : Iterable < E > > : IterableContainsNotOrAtMostCheckerBuilderBase < E , T , IterableContainsInAnyOrderSearchBehaviour >
ch.tutteli.atrium.assertions.charsequence.contains.builders.CharSequenceContainsBuilder
Module Contents
fun < T : CharSequence , S : SearchBehaviour > CharSequenceContainsBuilder < T , S > . atLeast ( times : Int ) : CharSequenceContainsAtLeastCheckerBuilder < T , S >
fun < T : CharSequence , S : SearchBehaviour > CharSequenceContainsBuilder < T , S > . atMost ( times : Int ) : CharSequenceContainsAtMostCheckerBuilder < T , S >
fun < T : CharSequence , S : SearchBehaviour > CharSequenceContainsBuilder < T , S > . exactly ( times : Int ) : CharSequenceContainsExactlyCheckerBuilder < T , S >
val < T : CharSequence > CharSequenceContainsBuilder < T , CharSequenceContainsNoOpSearchBehaviour > . ignoringCase : CharSequenceContainsBuilder < T , CharSequenceContainsIgnoringCaseSearchBehaviour >
fun < T : CharSequence , S : SearchBehaviour > CharSequenceContainsBuilder < T , S > . notOrAtMost ( times : Int ) : CharSequenceContainsNotOrAtMostCheckerBuilder < T , S >
ch.tutteli.atrium.assertions.charsequence.contains.builders.CharSequenceContainsCheckerBuilder
Module Contents
fun < T : CharSequence > CharSequenceContainsCheckerBuilder < T , CharSequenceContainsNoOpSearchBehaviour > . defaultTranslationOf ( expected : Translatable , vararg otherExpected : Translatable ) : AssertionPlant < T >
@JvmName ( "defaultTranslationOfIgnoringCase") fun < T : CharSequence > CharSequenceContainsCheckerBuilder < T , CharSequenceContainsIgnoringCaseSearchBehaviour > . defaultTranslationOf ( expected : Translatable , vararg otherExpected : Translatable ) : AssertionPlant < T >
fun < T : CharSequence > CharSequenceContainsCheckerBuilder < T , CharSequenceContainsNoOpSearchBehaviour > . regex ( pattern : String , vararg otherPatterns : String ) : AssertionPlant < T >
@JvmName ( "regexIgnoringCase") fun < T : CharSequence > CharSequenceContainsCheckerBuilder < T , CharSequenceContainsIgnoringCaseSearchBehaviour > . regex ( pattern : String , vararg otherPatterns : String ) : AssertionPlant < T >
fun < T : CharSequence > CharSequenceContainsCheckerBuilder < T , CharSequenceContainsNoOpSearchBehaviour > . value ( expected : Any ) : AssertionPlant < T >
@JvmName ( "valueIgnoringCase") fun < T : CharSequence > CharSequenceContainsCheckerBuilder < T , CharSequenceContainsIgnoringCaseSearchBehaviour > . value ( expected : Any ) : AssertionPlant < T >
fun < T : CharSequence > CharSequenceContainsCheckerBuilder < T , CharSequenceContainsNoOpSearchBehaviour > . values ( expected : Any , vararg otherExpected : Any ) : AssertionPlant < T >
@JvmName ( "valuesIgnoringCase") fun < T : CharSequence > CharSequenceContainsCheckerBuilder < T , CharSequenceContainsIgnoringCaseSearchBehaviour > . values ( expected : Any , vararg otherExpected : Any ) : AssertionPlant < T >
ch.tutteli.atrium.assertions.iterable.contains.builders.IterableContainsBuilder
Module Contents
fun < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInAnyOrderSearchBehaviour > . atLeast ( times : Int ) : IterableContainsAtLeastCheckerBuilder < E , T >
fun < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInAnyOrderSearchBehaviour > . atMost ( times : Int ) : IterableContainsAtMostCheckerBuilder < E , T >
fun < E : Any , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInAnyOrderOnlySearchBehaviour > . entries ( assertionCreator : AssertionPlant < E > . ( ) -> Unit , vararg otherAssertionCreators : AssertionPlant < E > . ( ) -> Unit ) : AssertionPlant < T >
fun < E : Any , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInOrderOnlySearchBehaviour > . entries ( assertionCreator : AssertionPlant < E > . ( ) -> Unit , vararg otherAssertionCreators : AssertionPlant < E > . ( ) -> Unit ) : AssertionPlant < T >
fun < E : Any , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInAnyOrderOnlySearchBehaviour > . entry ( assertionCreator : AssertionPlant < E > . ( ) -> Unit ) : AssertionPlant < T >
fun < E : Any , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInOrderOnlySearchBehaviour > . entry ( assertionCreator : AssertionPlant < E > . ( ) -> Unit ) : AssertionPlant < T >
fun < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInAnyOrderSearchBehaviour > . exactly ( times : Int ) : IterableContainsExactlyCheckerBuilder < E , T >
val < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsNoOpSearchBehaviour > . inAnyOrder : IterableContainsBuilder < E , T , IterableContainsInAnyOrderSearchBehaviour >
val < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsNoOpSearchBehaviour > . inOrder : IterableContainsBuilder < E , T , IterableContainsInOrderSearchBehaviour >
fun < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInAnyOrderSearchBehaviour > . notOrAtMost ( times : Int ) : IterableContainsNotOrAtMostCheckerBuilder < E , T >
fun < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInAnyOrderOnlySearchBehaviour > . object ( expected : E ) : AssertionPlant < T >
fun < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInOrderOnlySearchBehaviour > . object ( expected : E ) : AssertionPlant < T >
fun < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInAnyOrderOnlySearchBehaviour > . objects ( expected : E , vararg otherExpected : E ) : AssertionPlant < T >
fun < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInOrderOnlySearchBehaviour > . objects ( expected : E , vararg otherExpected : E ) : AssertionPlant < T >
val < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInAnyOrderSearchBehaviour > . only : IterableContainsBuilder < E , T , IterableContainsInAnyOrderOnlySearchBehaviour >
val < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInOrderSearchBehaviour > . only : IterableContainsBuilder < E , T , IterableContainsInOrderOnlySearchBehaviour >
fun < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInAnyOrderOnlySearchBehaviour > . value ( expected : E ) : AssertionPlant < T >
fun < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInOrderOnlySearchBehaviour > . value ( expected : E ) : AssertionPlant < T >
fun < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInAnyOrderOnlySearchBehaviour > . values ( expected : E , vararg otherExpected : E ) : AssertionPlant < T >
fun < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInOrderOnlySearchBehaviour > . values ( expected : E , vararg otherExpected : E ) : AssertionPlant < T >
ch.tutteli.atrium.assertions.iterable.contains.builders.IterableContainsCheckerBuilder
Module Contents
fun < E : Any , T : Iterable < E > > IterableContainsCheckerBuilder < E , T , IterableContainsInAnyOrderSearchBehaviour > . entries ( assertionCreator : AssertionPlant < E > . ( ) -> Unit , vararg otherAssertionCreators : AssertionPlant < E > . ( ) -> Unit ) : AssertionPlant < T >
fun < E : Any , T : Iterable < E > > IterableContainsCheckerBuilder < E , T , IterableContainsInAnyOrderSearchBehaviour > . entry ( assertionCreator : AssertionPlant < E > . ( ) -> Unit ) : AssertionPlant < T >
fun < E , T : Iterable < E > > IterableContainsCheckerBuilder < E , T , IterableContainsInAnyOrderSearchBehaviour > . object ( expected : E ) : AssertionPlant < T >
fun < E , T : Iterable < E > > IterableContainsCheckerBuilder < E , T , IterableContainsInAnyOrderSearchBehaviour > . objects ( expected : E , vararg otherExpected : E ) : AssertionPlant < T >
fun < E , T : Iterable < E > > IterableContainsCheckerBuilder < E , T , IterableContainsInAnyOrderSearchBehaviour > . value ( expected : E ) : AssertionPlant < T >
fun < E , T : Iterable < E > > IterableContainsCheckerBuilder < E , T , IterableContainsInAnyOrderSearchBehaviour > . values ( expected : E , vararg otherExpected : E ) : AssertionPlant < T >
ch.tutteli.atrium.assertions.throwable.thrown.builders.ThrowableThrownBuilder
ch.tutteli.atrium.creating.AssertionPlant
Module Contents
val < T : Any > AssertionPlant < T > . and : AssertionPlant < T >
infix fun < T : Any > AssertionPlant < T > . and ( assertionCreator : AssertionPlant < T > . ( ) -> Unit ) : AssertionPlant < T >
val < T : CharSequence > Assert < T > . contains : CharSequenceContainsBuilder < T , CharSequenceContainsNoOpSearchBehaviour >
fun < T : CharSequence > Assert < T > . contains ( expected : Any , vararg otherExpected : Any ) : AssertionPlant < T >
fun < E , T : Iterable < E > > Assert < T > . contains ( expected : E , vararg otherExpected : E ) : AssertionPlant < T >
fun < E : Any , T : Iterable < E > > Assert < T > . contains ( assertionCreator : AssertionPlant < E > . ( ) -> Unit , vararg otherAssertionCreators : AssertionPlant < E > . ( ) -> Unit ) : AssertionPlant < T >
fun < T : CharSequence > Assert < T > . containsDefaultTranslationOf ( expected : Translatable , vararg otherExpected : Translatable ) : AssertionPlant < T >
fun < T : CharSequence > Assert < T > . containsNot ( expected : Any , vararg otherExpected : Any ) : AssertionPlant < T >
fun < E , T : Iterable < E > > Assert < T > . containsNot ( expected : E , vararg otherExpected : E ) : AssertionPlant < T >
fun < T : CharSequence > Assert < T > . containsNotDefaultTranslationOf ( expected : Translatable , vararg otherExpected : Translatable ) : AssertionPlant < T >
fun < E , T : Iterable < E > > Assert < T > . containsStrictly ( expected : E , vararg otherExpected : E ) : AssertionPlant < T >
fun < E : Any , T : Iterable < E > > Assert < T > . containsStrictly ( assertionCreator : AssertionPlant < E > . ( ) -> Unit , vararg otherAssertionCreators : AssertionPlant < E > . ( ) -> Unit ) : AssertionPlant < T >
fun < T : CharSequence > Assert < T > . endsNotWith ( expected : CharSequence ) : AssertionPlant < T >
fun < T : CharSequence > Assert < T > . endsWith ( expected : CharSequence ) : AssertionPlant < T >
fun < T : Collection < * > > Assert < T > . hasSize ( size : Int ) : AssertionPlant < T >
inline fun < reified TSub : Any > Assert < Any > . isA ( noinline assertionCreator : AssertionPlant < TSub > . ( ) -> Unit ) : Unit
fun < T : CharSequence > Assert < T > . isEmpty ( ) : AssertionPlant < T >
fun Assert < Boolean > . isFalse ( ) : AssertionPlant < Boolean >
fun < T > Assert < T > . isGreaterOrEquals ( expected : T ) : AssertionPlant < T > where T : Number , T : Comparable < T >
fun < T > Assert < T > . isGreaterThan ( expected : T ) : AssertionPlant < T > where T : Number , T : Comparable < T >
fun < T > Assert < T > . isLessOrEquals ( expected : T ) : AssertionPlant < T > where T : Number , T : Comparable < T >
fun < T > Assert < T > . isLessThan ( expected : T ) : AssertionPlant < T > where T : Number , T : Comparable < T >
fun < T : CharSequence > Assert < T > . isNotEmpty ( ) : AssertionPlant < T >
fun < T : Any > Assert < T > . isNotSame ( expected : T ) : AssertionPlant < T >
fun < T : Any > Assert < T > . isSame ( expected : T ) : AssertionPlant < T >
fun Assert < Boolean > . isTrue ( ) : AssertionPlant < Boolean >
fun < T : Throwable > Assert < T > . message ( assertionCreator : AssertionPlant < String > . ( ) -> Unit ) : Unit
fun < T : Any > Assert < T > . notToBe ( expected : T ) : AssertionPlant < T >
fun < T : Any , TProperty : Any > Assert < T > . property ( property : KProperty0 < TProperty > ) : AssertionPlant < TProperty >
fun < T : Any , TProperty : Any > Assert < T > . property ( property : KProperty0 < TProperty > , assertionCreator : AssertionPlant < TProperty > . ( ) -> Unit ) : AssertionPlant < TProperty >
fun < T : Any , TReturnValue : Any > Assert < T > . returnValueOf ( method : KFunction0 < TReturnValue > ) : AssertionPlant < TReturnValue >
fun < T : Any , TReturnValue : Any > Assert < T > . returnValueOf ( method : KFunction0 < TReturnValue > , assertionCreator : AssertionPlant < TReturnValue > . ( ) -> Unit ) : AssertionPlant < TReturnValue >
fun < T : Any , T1 , TReturnValue : Any > Assert < T > . returnValueOf ( method : KFunction1 < T1 , TReturnValue > , arg1 : T1 ) : AssertionPlant < TReturnValue >
fun < T : Any , T1 , TReturnValue : Any > Assert < T > . returnValueOf ( method : KFunction1 < T1 , TReturnValue > , arg1 : T1 , assertionCreator : AssertionPlant < TReturnValue > . ( ) -> Unit ) : AssertionPlant < TReturnValue >
fun < T : Any , T1 , T2 , TReturnValue : Any > Assert < T > . returnValueOf ( method : KFunction2 < T1 , T2 , TReturnValue > , arg1 : T1 , arg2 : T2 ) : AssertionPlant < TReturnValue >
fun < T : Any , T1 , T2 , TReturnValue : Any > Assert < T > . returnValueOf ( method : KFunction2 < T1 , T2 , TReturnValue > , arg1 : T1 , arg2 : T2 , assertionCreator : AssertionPlant < TReturnValue > . ( ) -> Unit ) : AssertionPlant < TReturnValue >
fun < T : Any , T1 , T2 , T3 , TReturnValue : Any > Assert < T > . returnValueOf ( method : KFunction3 < T1 , T2 , T3 , TReturnValue > , arg1 : T1 , arg2 : T2 , arg3 : T3 ) : AssertionPlant < TReturnValue >
fun < T : Any , T1 , T2 , T3 , TReturnValue : Any > Assert < T > . returnValueOf ( method : KFunction3 < T1 , T2 , T3 , TReturnValue > , arg1 : T1 , arg2 : T2 , arg3 : T3 , assertionCreator : AssertionPlant < TReturnValue > . ( ) -> Unit ) : AssertionPlant < TReturnValue >
fun < T : Any , T1 , T2 , T3 , T4 , TReturnValue : Any > Assert < T > . returnValueOf ( method : KFunction4 < T1 , T2 , T3 , T4 , TReturnValue > , arg1 : T1 , arg2 : T2 , arg3 : T3 , arg4 : T4 ) : AssertionPlant < TReturnValue >
fun < T : Any , T1 , T2 , T3 , T4 , TReturnValue : Any > Assert < T > . returnValueOf ( method : KFunction4 < T1 , T2 , T3 , T4 , TReturnValue > , arg1 : T1 , arg2 : T2 , arg3 : T3 , arg4 : T4 , assertionCreator : AssertionPlant < TReturnValue > . ( ) -> Unit ) : AssertionPlant < TReturnValue >
fun < T : Any , T1 , T2 , T3 , T4 , T5 , TReturnValue : Any > Assert < T > . returnValueOf ( method : KFunction5 < T1 , T2 , T3 , T4 , T5 , TReturnValue > , arg1 : T1 , arg2 : T2 , arg3 : T3 , arg4 : T4 , arg5 : T5 ) : AssertionPlant < TReturnValue >
fun < T : Any , T1 , T2 , T3 , T4 , T5 , TReturnValue : Any > Assert < T > . returnValueOf ( method : KFunction5 < T1 , T2 , T3 , T4 , T5 , TReturnValue > , arg1 : T1 , arg2 : T2 , arg3 : T3 , arg4 : T4 , arg5 : T5 , assertionCreator : AssertionPlant < TReturnValue > . ( ) -> Unit ) : AssertionPlant < TReturnValue >
fun < T : CharSequence > Assert < T > . startsNotWith ( expected : CharSequence ) : AssertionPlant < T >
fun < T : CharSequence > Assert < T > . startsWith ( expected : CharSequence ) : AssertionPlant < T >
fun < T : Any > Assert < T > . toBe ( expected : T ) : AssertionPlant < T >
ch.tutteli.atrium.creating.AssertionPlantNullable
package ch.tutteli.atrium.api.cc.en_UK
Module Contents
fun < T : CharSequence , S : SearchBehaviour > CharSequenceContainsAtLeastCheckerBuilder < T , S > . butAtMost ( times : Int ) : CharSequenceContainsButAtMostCheckerBuilder < T , S >
fun < E , T : Iterable < E > > IterableContainsAtLeastCheckerBuilder < E , T > . butAtMost ( times : Int ) : IterableContainsButAtMostCheckerBuilder < E , T >
ch.tutteli.atrium.assertions.charsequence.contains.builders.CharSequenceContainsBuilder
Module Contents
fun < T : CharSequence , S : SearchBehaviour > CharSequenceContainsBuilder < T , S > . atLeast ( times : Int ) : CharSequenceContainsAtLeastCheckerBuilder < T , S >
fun < T : CharSequence , S : SearchBehaviour > CharSequenceContainsBuilder < T , S > . atMost ( times : Int ) : CharSequenceContainsAtMostCheckerBuilder < T , S >
fun < T : CharSequence , S : SearchBehaviour > CharSequenceContainsBuilder < T , S > . exactly ( times : Int ) : CharSequenceContainsExactlyCheckerBuilder < T , S >
val < T : CharSequence > CharSequenceContainsBuilder < T , CharSequenceContainsNoOpSearchBehaviour > . ignoringCase : CharSequenceContainsBuilder < T , CharSequenceContainsIgnoringCaseSearchBehaviour >
fun < T : CharSequence , S : SearchBehaviour > CharSequenceContainsBuilder < T , S > . notOrAtMost ( times : Int ) : CharSequenceContainsNotOrAtMostCheckerBuilder < T , S >
ch.tutteli.atrium.assertions.charsequence.contains.builders.CharSequenceContainsCheckerBuilder
Module Contents
fun < T : CharSequence > CharSequenceContainsCheckerBuilder < T , CharSequenceContainsNoOpSearchBehaviour > . defaultTranslationOf ( expected : Translatable , vararg otherExpected : Translatable ) : AssertionPlant < T >
@JvmName ( "defaultTranslationOfIgnoringCase") fun < T : CharSequence > CharSequenceContainsCheckerBuilder < T , CharSequenceContainsIgnoringCaseSearchBehaviour > . defaultTranslationOf ( expected : Translatable , vararg otherExpected : Translatable ) : AssertionPlant < T >
fun < T : CharSequence > CharSequenceContainsCheckerBuilder < T , CharSequenceContainsNoOpSearchBehaviour > . regex ( pattern : String , vararg otherPatterns : String ) : AssertionPlant < T >
@JvmName ( "regexIgnoringCase") fun < T : CharSequence > CharSequenceContainsCheckerBuilder < T , CharSequenceContainsIgnoringCaseSearchBehaviour > . regex ( pattern : String , vararg otherPatterns : String ) : AssertionPlant < T >
fun < T : CharSequence > CharSequenceContainsCheckerBuilder < T , CharSequenceContainsNoOpSearchBehaviour > . value ( expected : Any ) : AssertionPlant < T >
@JvmName ( "valueIgnoringCase") fun < T : CharSequence > CharSequenceContainsCheckerBuilder < T , CharSequenceContainsIgnoringCaseSearchBehaviour > . value ( expected : Any ) : AssertionPlant < T >
fun < T : CharSequence > CharSequenceContainsCheckerBuilder < T , CharSequenceContainsNoOpSearchBehaviour > . values ( expected : Any , vararg otherExpected : Any ) : AssertionPlant < T >
@JvmName ( "valuesIgnoringCase") fun < T : CharSequence > CharSequenceContainsCheckerBuilder < T , CharSequenceContainsIgnoringCaseSearchBehaviour > . values ( expected : Any , vararg otherExpected : Any ) : AssertionPlant < T >
ch.tutteli.atrium.assertions.iterable.contains.builders.IterableContainsBuilder
Module Contents
fun < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInAnyOrderSearchBehaviour > . atLeast ( times : Int ) : IterableContainsAtLeastCheckerBuilder < E , T >
fun < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInAnyOrderSearchBehaviour > . atMost ( times : Int ) : IterableContainsAtMostCheckerBuilder < E , T >
fun < E : Any , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInAnyOrderOnlySearchBehaviour > . entries ( assertionCreator : AssertionPlant < E > . ( ) -> Unit , vararg otherAssertionCreators : AssertionPlant < E > . ( ) -> Unit ) : AssertionPlant < T >
fun < E : Any , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInOrderOnlySearchBehaviour > . entries ( assertionCreator : AssertionPlant < E > . ( ) -> Unit , vararg otherAssertionCreators : AssertionPlant < E > . ( ) -> Unit ) : AssertionPlant < T >
fun < E : Any , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInAnyOrderOnlySearchBehaviour > . entry ( assertionCreator : AssertionPlant < E > . ( ) -> Unit ) : AssertionPlant < T >
fun < E : Any , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInOrderOnlySearchBehaviour > . entry ( assertionCreator : AssertionPlant < E > . ( ) -> Unit ) : AssertionPlant < T >
fun < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInAnyOrderSearchBehaviour > . exactly ( times : Int ) : IterableContainsExactlyCheckerBuilder < E , T >
val < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsNoOpSearchBehaviour > . inAnyOrder : IterableContainsBuilder < E , T , IterableContainsInAnyOrderSearchBehaviour >
val < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsNoOpSearchBehaviour > . inOrder : IterableContainsBuilder < E , T , IterableContainsInOrderSearchBehaviour >
fun < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInAnyOrderSearchBehaviour > . notOrAtMost ( times : Int ) : IterableContainsNotOrAtMostCheckerBuilder < E , T >
fun < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInAnyOrderOnlySearchBehaviour > . object ( expected : E ) : AssertionPlant < T >
fun < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInOrderOnlySearchBehaviour > . object ( expected : E ) : AssertionPlant < T >
fun < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInAnyOrderOnlySearchBehaviour > . objects ( expected : E , vararg otherExpected : E ) : AssertionPlant < T >
fun < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInOrderOnlySearchBehaviour > . objects ( expected : E , vararg otherExpected : E ) : AssertionPlant < T >
val < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInAnyOrderSearchBehaviour > . only : IterableContainsBuilder < E , T , IterableContainsInAnyOrderOnlySearchBehaviour >
val < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInOrderSearchBehaviour > . only : IterableContainsBuilder < E , T , IterableContainsInOrderOnlySearchBehaviour >
fun < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInAnyOrderOnlySearchBehaviour > . value ( expected : E ) : AssertionPlant < T >
fun < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInOrderOnlySearchBehaviour > . value ( expected : E ) : AssertionPlant < T >
fun < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInAnyOrderOnlySearchBehaviour > . values ( expected : E , vararg otherExpected : E ) : AssertionPlant < T >
fun < E , T : Iterable < E > > IterableContainsBuilder < E , T , IterableContainsInOrderOnlySearchBehaviour > . values ( expected : E , vararg otherExpected : E ) : AssertionPlant < T >
ch.tutteli.atrium.assertions.iterable.contains.builders.IterableContainsCheckerBuilder
Module Contents
fun < E : Any , T : Iterable < E > > IterableContainsCheckerBuilder < E , T , IterableContainsInAnyOrderSearchBehaviour > . entries ( assertionCreator : AssertionPlant < E > . ( ) -> Unit , vararg otherAssertionCreators : AssertionPlant < E > . ( ) -> Unit ) : AssertionPlant < T >
fun < E : Any , T : Iterable < E > > IterableContainsCheckerBuilder < E , T , IterableContainsInAnyOrderSearchBehaviour > . entry ( assertionCreator : AssertionPlant < E > . ( ) -> Unit ) : AssertionPlant < T >
fun < E , T : Iterable < E > > IterableContainsCheckerBuilder < E , T , IterableContainsInAnyOrderSearchBehaviour > . object ( expected : E ) : AssertionPlant < T >
fun < E , T : Iterable < E > > IterableContainsCheckerBuilder < E , T , IterableContainsInAnyOrderSearchBehaviour > . objects ( expected : E , vararg otherExpected : E ) : AssertionPlant < T >
fun < E , T : Iterable < E > > IterableContainsCheckerBuilder < E , T , IterableContainsInAnyOrderSearchBehaviour > . value ( expected : E ) : AssertionPlant < T >
fun < E , T : Iterable < E > > IterableContainsCheckerBuilder < E , T , IterableContainsInAnyOrderSearchBehaviour > . values ( expected : E , vararg otherExpected : E ) : AssertionPlant < T >
ch.tutteli.atrium.assertions.throwable.thrown.builders.ThrowableThrownBuilder
ch.tutteli.atrium.creating.AssertionPlant
Module Contents
val < T : Any > AssertionPlant < T > . and : AssertionPlant < T >
infix fun < T : Any > AssertionPlant < T > . and ( assertionCreator : AssertionPlant < T > . ( ) -> Unit ) : AssertionPlant < T >
val < T : CharSequence > Assert < T > . contains : CharSequenceContainsBuilder < T , CharSequenceContainsNoOpSearchBehaviour >
fun < T : CharSequence > Assert < T > . contains ( expected : Any , vararg otherExpected : Any ) : AssertionPlant < T >
fun < E , T : Iterable < E > > Assert < T > . contains ( expected : E , vararg otherExpected : E ) : AssertionPlant < T >
fun < E : Any , T : Iterable < E > > Assert < T > . contains ( assertionCreator : AssertionPlant < E > . ( ) -> Unit , vararg otherAssertionCreators : AssertionPlant < E > . ( ) -> Unit ) : AssertionPlant < T >
fun < T : CharSequence > Assert < T > . containsDefaultTranslationOf ( expected : Translatable , vararg otherExpected : Translatable ) : AssertionPlant < T >
fun < T : CharSequence > Assert < T > . containsNot ( expected : Any , vararg otherExpected : Any ) : AssertionPlant < T >
fun < E , T : Iterable < E > > Assert < T > . containsNot ( expected : E , vararg otherExpected : E ) : AssertionPlant < T >
fun < T : CharSequence > Assert < T > . containsNotDefaultTranslationOf ( expected : Translatable , vararg otherExpected : Translatable ) : AssertionPlant < T >
fun < E , T : Iterable < E > > Assert < T > . containsStrictly ( expected : E , vararg otherExpected : E ) : AssertionPlant < T >
fun < E : Any , T : Iterable < E > > Assert < T > . containsStrictly ( assertionCreator : AssertionPlant < E > . ( ) -> Unit , vararg otherAssertionCreators : AssertionPlant < E > . ( ) -> Unit ) : AssertionPlant < T >
fun < T : CharSequence > Assert < T > . endsNotWith ( expected : CharSequence ) : AssertionPlant < T >
fun < T : CharSequence > Assert < T > . endsWith ( expected : CharSequence ) : AssertionPlant < T >
fun < T : Collection < * > > Assert < T > . hasSize ( size : Int ) : AssertionPlant < T >
inline fun < reified TSub : Any > Assert < Any > . isA ( noinline assertionCreator : AssertionPlant < TSub > . ( ) -> Unit ) : Unit
fun < T : CharSequence > Assert < T > . isEmpty ( ) : AssertionPlant < T >
fun Assert < Boolean > . isFalse ( ) : AssertionPlant < Boolean >
fun < T > Assert < T > . isGreaterOrEquals ( expected : T ) : AssertionPlant < T > where T : Number , T : Comparable < T >
fun < T > Assert < T > . isGreaterThan ( expected : T ) : AssertionPlant < T > where T : Number , T : Comparable < T >
fun < T > Assert < T > . isLessOrEquals ( expected : T ) : AssertionPlant < T > where T : Number , T : Comparable < T >
fun < T > Assert < T > . isLessThan ( expected : T ) : AssertionPlant < T > where T : Number , T : Comparable < T >
fun < T : CharSequence > Assert < T > . isNotEmpty ( ) : AssertionPlant < T >
fun < T : Any > Assert < T > . isNotSame ( expected : T ) : AssertionPlant < T >
fun < T : Any > Assert < T > . isSame ( expected : T ) : AssertionPlant < T >
fun Assert < Boolean > . isTrue ( ) : AssertionPlant < Boolean >
fun < T : Throwable > Assert < T > . message ( assertionCreator : AssertionPlant < String > . ( ) -> Unit ) : Unit
fun < T : Any > Assert < T > . notToBe ( expected : T ) : AssertionPlant < T >
fun < T : Any , TProperty : Any > Assert < T > . property ( property : KProperty0 < TProperty > ) : AssertionPlant < TProperty >
fun < T : Any , TProperty : Any > Assert < T > . property ( property : KProperty0 < TProperty > , assertionCreator : AssertionPlant < TProperty > . ( ) -> Unit ) : AssertionPlant < TProperty >
fun < T : Any , TReturnValue : Any > Assert < T > . returnValueOf ( method : KFunction0 < TReturnValue > ) : AssertionPlant < TReturnValue >
fun < T : Any , TReturnValue : Any > Assert < T > . returnValueOf ( method : KFunction0 < TReturnValue > , assertionCreator : AssertionPlant < TReturnValue > . ( ) -> Unit ) : AssertionPlant < TReturnValue >
fun < T : Any , T1 , TReturnValue : Any > Assert < T > . returnValueOf ( method : KFunction1 < T1 , TReturnValue > , arg1 : T1 ) : AssertionPlant < TReturnValue >
fun < T : Any , T1 , TReturnValue : Any > Assert < T > . returnValueOf ( method : KFunction1 < T1 , TReturnValue > , arg1 : T1 , assertionCreator : AssertionPlant < TReturnValue > . ( ) -> Unit ) : AssertionPlant < TReturnValue >
fun < T : Any , T1 , T2 , TReturnValue : Any > Assert < T > . returnValueOf ( method : KFunction2 < T1 , T2 , TReturnValue > , arg1 : T1 , arg2 : T2 ) : AssertionPlant < TReturnValue >
fun < T : Any , T1 , T2 , TReturnValue : Any > Assert < T > . returnValueOf ( method : KFunction2 < T1 , T2 , TReturnValue > , arg1 : T1 , arg2 : T2 , assertionCreator : AssertionPlant < TReturnValue > . ( ) -> Unit ) : AssertionPlant < TReturnValue >
fun < T : Any , T1 , T2 , T3 , TReturnValue : Any > Assert < T > . returnValueOf ( method : KFunction3 < T1 , T2 , T3 , TReturnValue > , arg1 : T1 , arg2 : T2 , arg3 : T3 ) : AssertionPlant < TReturnValue >
fun < T : Any , T1 , T2 , T3 , TReturnValue : Any > Assert < T > . returnValueOf ( method : KFunction3 < T1 , T2 , T3 , TReturnValue > , arg1 : T1 , arg2 : T2 , arg3 : T3 , assertionCreator : AssertionPlant < TReturnValue > . ( ) -> Unit ) : AssertionPlant < TReturnValue >
fun < T : Any , T1 , T2 , T3 , T4 , TReturnValue : Any > Assert < T > . returnValueOf ( method : KFunction4 < T1 , T2 , T3 , T4 , TReturnValue > , arg1 : T1 , arg2 : T2 , arg3 : T3 , arg4 : T4 ) : AssertionPlant < TReturnValue >
fun < T : Any , T1 , T2 , T3 , T4 , TReturnValue : Any > Assert < T > . returnValueOf ( method : KFunction4 < T1 , T2 , T3 , T4 , TReturnValue > , arg1 : T1 , arg2 : T2 , arg3 : T3 , arg4 : T4 , assertionCreator : AssertionPlant < TReturnValue > . ( ) -> Unit ) : AssertionPlant < TReturnValue >
fun < T : Any , T1 , T2 , T3 , T4 , T5 , TReturnValue : Any > Assert < T > . returnValueOf ( method : KFunction5 < T1 , T2 , T3 , T4 , T5 , TReturnValue > , arg1 : T1 , arg2 : T2 , arg3 : T3 , arg4 : T4 , arg5 : T5 ) : AssertionPlant < TReturnValue >
fun < T : Any , T1 , T2 , T3 , T4 , T5 , TReturnValue : Any > Assert < T > . returnValueOf ( method : KFunction5 < T1 , T2 , T3 , T4 , T5 , TReturnValue > , arg1 : T1 , arg2 : T2 , arg3 : T3 , arg4 : T4 , arg5 : T5 , assertionCreator : AssertionPlant < TReturnValue > . ( ) -> Unit ) : AssertionPlant < TReturnValue >
fun < T : CharSequence > Assert < T > . startsNotWith ( expected : CharSequence ) : AssertionPlant < T >
fun < T : CharSequence > Assert < T > . startsWith ( expected : CharSequence ) : AssertionPlant < T >
fun < T : Any > Assert < T > . toBe ( expected : T ) : AssertionPlant < T >
ch.tutteli.atrium.creating.AssertionPlantNullable
package ch.tutteli.atrium.api.cc.en_UK.assertions.charsequence.contains.builders
Module Contents
open class CharSequenceContainsAtLeastCheckerBuilder < T : CharSequence , S : SearchBehaviour > : CharSequenceContainsAtLeastCheckerBuilderBase < T , S >
open class CharSequenceContainsAtMostCheckerBuilder < T : CharSequence , S : SearchBehaviour > : CharSequenceContainsAtMostCheckerBuilderBase < T , S >
open class CharSequenceContainsButAtMostCheckerBuilder < T : CharSequence , S : SearchBehaviour > : CharSequenceContainsButAtMostCheckerBuilderBase < T , S >
open class CharSequenceContainsExactlyCheckerBuilder < T : CharSequence , S : SearchBehaviour > : CharSequenceContainsExactlyCheckerBuilderBase < T , S >
open class CharSequenceContainsNotOrAtMostCheckerBuilder < T : CharSequence , S : SearchBehaviour > : CharSequenceContainsNotOrAtMostCheckerBuilderBase < T , S >
package ch.tutteli.atrium.api.cc.en_UK.assertions.iterable.contains.builders
Module Contents
open class IterableContainsAtLeastCheckerBuilder < E , T : Iterable < E > > : IterableContainsAtLeastCheckerBuilderBase < E , T , IterableContainsInAnyOrderSearchBehaviour >
open class IterableContainsAtMostCheckerBuilder < E , T : Iterable < E > > : IterableContainsAtMostCheckerBuilderBase < E , T , IterableContainsInAnyOrderSearchBehaviour >
open class IterableContainsButAtMostCheckerBuilder < E , T : Iterable < E > > : IterableContainsButAtMostCheckerBuilderBase < E , T , IterableContainsInAnyOrderSearchBehaviour >
open class IterableContainsExactlyCheckerBuilder < E , T : Iterable < E > > : IterableContainsExactlyCheckerBuilderBase < E , T , IterableContainsInAnyOrderSearchBehaviour >
open class IterableContainsNotOrAtMostCheckerBuilder < E , T : Iterable < E > > : IterableContainsNotOrAtMostCheckerBuilderBase < E , T , IterableContainsInAnyOrderSearchBehaviour >