public void check_if_message_exists()
        {
            var topic   = Guid.NewGuid().ToString();
            var message = CreateTestMessage();

            Assert.That(_store.Contains(topic, message), Is.False, "Should not exist before saving");
            _store.Save(topic, message);
            Assert.That(_store.Contains(topic, message), Is.True, "Should exist once it was saved");
        }