use of com.adaptris.core.services.conditional.operator.NotNull in project interlok by adaptris.
the class ConditionPayloadTest method testPayloadExists.
@Test
public void testPayloadExists() throws Exception {
condition.setOperator(new NotNull());
message.setContent("some content", message.getContentEncoding());
assertTrue(condition.evaluate(message));
}
Aggregations