public class ArgCheckTest extends Object
| Constructor and Description |
|---|
ArgCheckTest() |
public ArgCheckTest()
public void isNonNegativeShouldNotThrowExceptionIfPositiveNumber()
public void isNonNegativeShouldNotThrowExceptionIfZero()
public void isNonNegativeShouldThrowExceptionIfNegative()
public void isNonPositiveShouldNotThrowExceptionIfNegativeNumber()
public void isNonPositiveShouldNotThrowExceptionIfZero()
public void isNonPositiveShouldThrowExceptionIfPositive()
public void isNegativeShouldNotThrowExceptionIfNegativeNumber()
public void isNegativeShouldThrowExceptionIfZero()
public void isNegativeShouldThrowExceptionIfPositive()
public void isPositiveShouldNotThrowExceptionIfPositiveNumber()
public void isPositiveShouldThrowExceptionIfZero()
public void isPositiveShouldThrowExceptionIfNegative()
public void isNonNegativeLongShouldNotThrowExceptionIfPositiveNumber()
public void isNonNegativeLongShouldNotThrowExceptionIfZero()
public void isNonNegativeLongShouldThrowExceptionIfNegative()
public void isNonPositiveLongShouldNotThrowExceptionIfNegativeNumber()
public void isNonPositiveLongShouldNotThrowExceptionIfZero()
public void isNonPositiveLongShouldThrowExceptionIfPositive()
public void isNegativeLongShouldNotThrowExceptionIfNegativeNumber()
public void isNegativeLongShouldThrowExceptionIfZero()
public void isNegativeLongShouldThrowExceptionIfPositive()
public void isPositiveLongShouldNotThrowExceptionIfPositiveNumber()
public void isPositiveLongShouldThrowExceptionIfZero()
public void isPositiveLongShouldThrowExceptionIfNegative()
public void isNotEmptyStringShouldNotThrowExceptionIfGivenStringWithAtLeastOneCharacter()
public void isNotEmptyStringShouldThrowExceptionIfGivenNullString()
public void isNotEmptyStringShouldThrowExceptionIfGivenEmptyString()
public void isNotEmptyStringShouldThrowExceptionIfGivenStringWithOnlyWhitespace()
public void isNotZeroLengthShouldNotThrowExceptionIfGivenAStringOneCharacterOrLonger()
public void isNotZeroLengthShouldNotThrowExceptionIfGivenAStringWithOnlyWhitespace()
public void isNotZeroLengthShouldThrowExceptionIfGivenAStringWithNoCharacters()
public void isNotZeroLengthShouldThrowExceptionIfGivenANullString()
public void isNotNullShouldNotThrowExceptionIfGivenNonNullReference()
public void isNotNullShouldThrowExceptionIfGivenNullReference()
public void getNotNullShouldReturnArgument()
public void getNotNullShouldThrowExceptionIfGivenNullReference()
public void isNullShouldNotThrowExceptionIfGivenNullReference()
public void isNullShouldThrowExceptionIfGivenNonNullReference()
public void isInstanceOfShouldNotThrowExceptionIfReferenceIsInstanceOfTheSuppliedClass()
public void isInstanceOfShouldNotThrowExceptionIfReferenceIsNotInstanceOfTheSuppliedClass()
public void isInstanceOfShouldNotThrowExceptionIfReferenceIsNull()
public void getInstanceOfShouldReturnCastArgument()
public void getInstanceOfShouldThrowExceptionIfGivenNullReference()
public void isNotEmptyCollectionShouldNotThrowExceptionIfGivenCollectionWithAtLeastOneObject()
public void isNotEmptyCollectionShouldThrowExceptionIfGivenNullCollection()
public void isNotEmptyCollectionShouldThrowExceptionIfGivenEmptyCollection()
public void isNotEmptyMapShouldNotThrowExceptionIfGivenMapWithAtLeastOneEntry()
public void isNotEmptyMapShouldThrowExceptionIfGivenNullMap()
public void isNotEmptyMapShouldThrowExceptionIfGivenEmptyMap()
public void isNotEmptyArrayShouldNotThrowExceptionIfGivenArrayWithAtLeastOneEntry()
public void isNotEmptyArrayShouldNotThrowExceptionIfGivenArrayWithAtNullEntry()
public void isNotEmptyArrayShouldThrowExceptionIfGivenNullArray()
public void isNotEmptyArrayShouldThrowExceptionIfGivenEmptyArray()
public void isNotSameShouldNotThrowAnExceptionIfPassedSameObject()
public void isNotSameShouldNotThrowAnExceptionIfPassedSameObjectWithNoNames()
public void isNotSameShouldNotThrowAnExceptionIfPassedNullFirstObjectAndNonNullSecondObject()
public void isNotSameShouldNotThrowAnExceptionIfPassedNonNullFirstObjectAndNullSecondObject()
public void isNotSameShouldThrowAnExceptionIfPassedNullFirstObjectAndNullSecondObject()
public void isNotSameShouldThrowAnExceptionIfPassedSameReferenceForFirstSecondObject()
public void containsShouldNotThrowExceptionIfPassedObjectInCollection()
public void containsShouldNotThrowExceptionIfPassedNullIfCollectionContainsNull()
public void containsShouldThrowExceptionIfPassedObjectNotInCollection()
public void containsShouldThrowExceptionIfPassedNullAndCollectionDoesNotContainNull()
public void containsKeyShouldNotThrowExceptionIfPassedObjectInCollection()
public void containsKeyShouldNotThrowExceptionIfPassedNullIfMapContainsNullKey()
public void containsKeyShouldThrowExceptionIfPassedKeyNotInMap()
public void containsKeyShouldThrowExceptionIfPassedNullAndMapDoesNotContainNullKey()
public void containsNoNullsCollectionShouldNotThrowExceptionIfGivenArrayWithAtLeastOneEntry()
public void containsNoNullsCollectionShouldThrowExceptionIfGivenNullCollection()
public void containsNoNullsCollectionShouldNotThrowExceptionIfGivenEmptyCollection()
public void containsNoNullsCollectionShouldThrowExceptionIfGivenCollectionWithNullEntry()
public void containsNoNullsArrayShouldNotThrowExceptionIfGivenArrayWithAtLeastOneEntry()
public void containsNoNullsArrayShouldThrowExceptionIfGivenNullArray()
public void containsNoNullsArrayShouldNotThrowExceptionIfGivenEmptyArray()
public void containsNoNullsArrayShouldThrowExceptionIfGivenArrayWithNullEntry()
public void isNotLessThanShouldThrowExceptionIfValueIsLessThanSuppliedValue()
public void isNotGreaterThanShouldThrowExceptionIfValueIsGreaterThanSuppliedValue()
public void isNotLessThanShouldThrowExceptionIfValueIsEqualToSuppliedValue()
public void isNotGreaterThanShouldThrowExceptionIfValueIsEqualToSuppliedValue()
public void isLessThanShouldThrowExceptionIfValueIsGreaterThanSuppliedValue()
public void isGreaterThanShouldThrowExceptionIfValueIsLessThanSuppliedValue()
public void isLessThanShouldThrowExceptionIfValueIsEqualToSuppliedValue()
public void isGreaterThanShouldThrowExceptionIfValueIsEqualToSuppliedValue()
public void isLessThanOrEqualToShouldThrowExceptionIfValueIsNotLessThanOrEqualToSuppliedValue()
public void isGreaterThanOrEqualToShouldThrowExceptionIfValueIsNotGreaterThanOrEqualToSuppliedValue()
public void isNotLessThanShouldNotThrowExceptionIfValueIsNotLessThanSuppliedValue()
public void isNotGreaterThanShouldNotThrowExceptionIfValueIsNotGreaterThanSuppliedValue()
public void isLessThanShouldNotThrowExceptionIfValueIsLessThanSuppliedValue()
public void isGreaterThanShouldNotThrowExceptionIfValueIsGreaterThanSuppliedValue()
public void isLessThanOrEqualToShouldNotThrowExceptionIfValueIsLessThanOrEqualToSuppliedValue()
public void isGreaterThanOrEqualToShouldNotThrowExceptionIfValueIsGreaterThanOrEqualToSuppliedValue()
public void hasSizeOfAtLeastShouldThrowExceptionIfCollectionSizeIsSmallerThanSuppliedValue()
public void hasSizeOfAtMostShouldThrowExceptionIfCollectionSizeIsLargerThanSuppliedValue()
public void hasSizeOfAtLeastShouldNotThrowExceptionIfCollectionSizeIsEqualToSuppliedValue()
public void hasSizeOfAtMostShouldNotThrowExceptionIfCollectionSizeIsEqualToSuppliedValue()
public void hasSizeOfAtLeastShouldNotThrowExceptionIfCollectionSizeIsGreaterThanSuppliedValue()
public void hasSizeOfAtMostShouldNotThrowExceptionIfCollectionSizeIsGreaterThanSuppliedValue()
public void hasSizeOfAtLeastShouldThrowExceptionIfMapSizeIsSmallerThanSuppliedValue()
public void hasSizeOfAtMostShouldThrowExceptionIfMapSizeIsLargerThanSuppliedValue()
public void hasSizeOfAtLeastShouldNotThrowExceptionIfMapSizeIsEqualToSuppliedValue()
public void hasSizeOfAtMostShouldNotThrowExceptionIfMapSizeIsEqualToSuppliedValue()
public void hasSizeOfAtLeastShouldNotThrowExceptionIfMapSizeIsGreaterThanSuppliedValue()
public void hasSizeOfAtMostShouldNotThrowExceptionIfMapSizeIsGreaterThanSuppliedValue()
public void hasSizeOfAtLeastShouldThrowExceptionIfArraySizeIsSmallerThanSuppliedValue()
public void hasSizeOfAtMostShouldThrowExceptionIfArraySizeIsLargerThanSuppliedValue()
public void hasSizeOfAtLeastShouldNotThrowExceptionIfArraySizeIsEqualToSuppliedValue()
public void hasSizeOfAtMostShouldNotThrowExceptionIfArraySizeIsEqualToSuppliedValue()
public void hasSizeOfAtLeastShouldNotThrowExceptionIfArraySizeIsGreaterThanSuppliedValue()
public void hasSizeOfAtMostShouldNotThrowExceptionIfArraySizeIsGreaterThanSuppliedValue()
Copyright © 2008–2021 JBoss, a division of Red Hat. All rights reserved.