Package org.apache.qpid.test.framework

Examples of org.apache.qpid.test.framework.NotApplicableAssertion


     *
     * @return An assertion that the receivers encountered no exceptions.
     */
    public Assertion noExceptionsAssertion(ParsedProperties testProps)
    {
        return new NotApplicableAssertion(testProps);
    }
View Full Code Here


     *
     * @return An assertion that the AMQP channel was forcibly closed by an error condition.
     */
    public Assertion channelClosedAssertion(ParsedProperties testProps)
    {
        return new NotApplicableAssertion(testProps);
    }
View Full Code Here

     *
     * @return An assertion that the receivers got all messages that were sent to it.
     */
    public Assertion allMessagesReceivedAssertion(ParsedProperties testProps)
    {
        return new NotApplicableAssertion(testProps);
    }
View Full Code Here

     *
     * @return An assertion that the receivers got none of the messages that were sent to it.
     */
    public Assertion noMessagesReceivedAssertion(ParsedProperties testProps)
    {
        return new NotApplicableAssertion(testProps);
    }
View Full Code Here

     * @param testProps The test configuration properties.
     * @param exceptionClass The exception class to check for. @return An assertion that the receiver got a given exception during the test.
     */
    public Assertion exceptionAssertion(ParsedProperties testProps, Class<? extends Exception> exceptionClass)
    {
        return new NotApplicableAssertion(testProps);
    }
View Full Code Here

     *
     * @return An assertion that the AMQP channel was forcibly closed by an error condition.
     */
    public Assertion channelClosedAssertion(ParsedProperties testProps)
    {
        return new NotApplicableAssertion(testProps);
    }
View Full Code Here

TOP

Related Classes of org.apache.qpid.test.framework.NotApplicableAssertion

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.