You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package commands;
-
- import static org.junit.Assert.assertNotNull;
-
- import com.fasterxml.jackson.databind.node.ObjectNode;
-
- public class CheckMessageIsNotNullOnTell implements DummyTell {
-
- @Override
- public void tell(ObjectNode message) {
- assertNotNull(message);
- }
-
- }
|