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.
 
 
 
 
 

15 rivejä
284 B

  1. package commands;
  2. import static org.junit.Assert.assertNotNull;
  3. import com.fasterxml.jackson.databind.node.ObjectNode;
  4. public class CheckMessageIsNotNullOnTell implements DummyTell {
  5. @Override
  6. public void tell(ObjectNode message) {
  7. assertNotNull(message);
  8. }
  9. }