/* * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * */ //using uk.co.thebadgerset.junit.extensions.util.ParsedProperties; using System; namespace Apache.Qpid.Integration.Tests.framework { /// /// A Receiver is a that represents the status of the receiving side of a test circuit. Its main /// purpose is to provide assertions that can be applied to check the behaviour of the receivers. /// ///

///
CRC Card
Responsibilities ///
Provide assertion that the receivers received no exceptions. ///
Provide assertion that the receivers received all test messages sent to it. ///
///

public interface Receiver { /// /// Provides an assertion that the receivers encountered no exceptions. /// /// /// The test configuration properties. /// /// An assertion that the receivers encountered no exceptions. Assertion NoExceptionsAssertion(TestModel testProps); /// /// Provides an assertion that the receivers got all messages that were sent to it. /// /// The test configuration properties. /// /// An assertion that the receivers got all messages that were sent to it. Assertion AllMessagesReceivedAssertion(TestModel testProps); /// /// Provides an assertion that the receivers got none of the messages that were sent to it. /// /// The test configuration properties. /// /// An assertion that the receivers got none of the messages that were sent to it. Assertion NoMessagesReceivedAssertion(TestModel testProps); /// /// Provides an assertion that the AMQP channel was forcibly closed by an error condition. /// /// The test configuration properties. /// /// An assertion that the AMQP channel was forcibly closed by an error condition. Assertion ChannelClosedAssertion(TestModel testProps); /// /// Provides an assertion that the receiver got a given exception during the test. /// /// The test configuration properties. /// The exception class to check for. /// /// An assertion that the receiver got a given exception during the test. Assertion ExceptionAssertion(TestModel testProps, Type exceptionClass); } }