Creates a new instance of exception.
Creates a new instance of exception. Default implementation uses RequireCore.DefaultExceptionCreator exception creator.
the message (must be non-blank)
the cause exception (must be non-null and not Some(null))
new exception instance (non-null)
RuntimeException if any argument is not valid
Fails test.
Fails test. Must be invoked at every time when requireXXX method fails. Default implementation
invokes exception() to create new exception instance with message produced by failureMessage() method
and throws the result.
the String to include in the failure message (must be non-null)
RuntimeException at every invokation
Constructs the failure message.
Constructs the failure message. Default implementation invokes toString() method of message
and returns result.
the source message (must be non-null)
the failure message (non-null)
RuntimeException if message is null
Wraps predicate RequirePredicate to element function RequireElementFunction.
Wraps predicate RequirePredicate to element function RequireElementFunction.
the type of element
the predicate (must be non-null)
the new RequireElementFunction instance
Wraps predicate RequirePredicate to element function RequireFunction.
Wraps predicate RequirePredicate to element function RequireFunction.
the type of element
the predicate (must be non-null)
the new RequireFunction instance
Invokes requirement to test an expression and calls fail if it returns false.
Invokes requirement to test an expression and calls fail if it returns false.
the expression to test
a String to include in the failure message (must be non-null)
RuntimeException if requirement invokation returns false of any argument is not valid
Tests that size of iterable value equals size, and otherwise throws RequireCore.exception().
Tests that size of iterable value equals size, and otherwise throws RequireCore.exception().
the type of iterable elements
the iterable value (must be non-null)
the expected size (must be positive)
the name to include in the failure message (must be non-null)
RuntimeException if test fails
Tests that size of iterable value is from from inclusive until Int.MaxValue inclusive,
and otherwise throws RequireCore.exception().
Tests that size of iterable value is from from inclusive until Int.MaxValue inclusive,
and otherwise throws RequireCore.exception().
the type of iterable elements
the iterable value (must be non-null)
the minimum size value (inclusive)
the name to include in the failure message (must be non-null)
RuntimeException if test fails
Tests that size of iterable value is from from inclusive until until exclusive,
and otherwise throws RequireCore.exception().
Tests that size of iterable value is from from inclusive until until exclusive,
and otherwise throws RequireCore.exception().
the type of iterable elements
the iterable value (must be non-null)
the minimum size value (inclusive)
the maximum size value (exclusive)
the name to include in the failure message (must be non-null)
RuntimeException if test fails
Tests that size of iterable value is from 0 inclusive until until exclusive,
and otherwise throws RequireCore.exception().
Tests that size of iterable value is from 0 inclusive until until exclusive,
and otherwise throws RequireCore.exception().
the type of iterable elements
the iterable value (must be non-null)
the maximum size value (exclusive)
the name to include in the failure message (must be non-null)
RuntimeException if test fails
requireXXXmethods to test Iterable size.0.0.4