1
2
3
4
5
6
7
8
9
10
11
12
13 package com.eviware.soapui.model.testsuite;
14
15 import com.eviware.soapui.model.iface.MessageExchange;
16 import com.eviware.soapui.model.iface.SubmitContext;
17 import com.eviware.soapui.model.testsuite.Assertable.AssertionStatus;
18
19 /***
20 * Behaviour for a assertion for the response in a WsdlMessageExchange
21 *
22 * @author ole.matzura
23 */
24
25 public interface ResponseAssertion
26 {
27 public AssertionStatus assertResponse( MessageExchange messageExchange, SubmitContext context);
28 }