Validation checks to test if a given object is a list of Distributions.
testDistributionList(
object,
errormsg = "One or more items in the list are not Distributions"
)
checkDistributionList(
object,
errormsg = "One or more items in the list are not Distributions"
)
assertDistributionList(
object,
errormsg = "One or more items in the list are not Distributions"
)
If check passes then assert
returns invisibly and test
/check
return TRUE
. If check fails, assert
stops code with error, check
returns
an error message as string, test
returns FALSE
.
testDistributionList(list(Binomial$new(), 5)) # FALSE
#> [1] FALSE
testDistributionList(list(Binomial$new(), Exponential$new())) # TRUE
#> [1] TRUE