public void Constructing_an_instance_should_initialize_the_message()
        {
            String message = "Hello world";
            ICommand aCommand = MockRepository.GenerateMock<ICommand>();

            var target = new MappingNotFoundException(message, aCommand);

            target.Message.Should().Be(message);
        }
        public void Constructing_an_instance_should_initialize_the_inner_exception()
        {
            String aMessage = "Hello world";
            ICommand theCommand = MockRepository.GenerateMock<ICommand>();
            var theInnerException = new Exception();

            var target = new MappingNotFoundException(aMessage, theCommand, theInnerException);

            target.InnerException.Should().Be(theInnerException);
        }
        public void It_should_be_serializable()
        {
            var aMessage = "Hello world";
            ICommand aCommand = MockRepository.GenerateMock<ICommand>();
            var theException = new MappingNotFoundException(aMessage, aCommand);
            MappingNotFoundException deserializedException = null;

            using (var buffer = new MemoryStream())
            {
                var formatter = new BinaryFormatter();
                formatter.Serialize(buffer, theException);

                buffer.Seek(0, SeekOrigin.Begin);
                deserializedException = (MappingNotFoundException)formatter.Deserialize(buffer);
            }

            deserializedException.Should().NotBeNull();
        }