Feature: Can the adapter validate messages?
  The adapter validate method works as expected

  Scenario: A valid message is successfully validated against the protocol schema
    Given valid config
    Given a valid message
    When the adapter instance is created
    When the validate method is called
    Then the message is validated successfully  
  
  Scenario: An invalid message fails to validate against the protocol schema
    Given valid config
    Given an invalid message
    When the adapter instance is created
    When the validate method is called
    Then the message fails to validate