protected override void Context()
        {
            base.Context();
            var reactions = new ReactionBuildingBlock {
                new ReactionBuilder().WithName("REACTION")
            };

            _buildConfiguration.Reactions = reactions;

            var passiveTransports = new PassiveTransportBuildingBlock {
                new TransportBuilder().WithName("TRANSPORT")
            };

            _buildConfiguration.PassiveTransports = passiveTransports;
            sut = new ValidatorForReactionsAndTransports(_objectTypeResolver, _objectPathFactory);;
        }
 protected override void Context()
 {
     base.Context();
     sut = new ValidatorForReactionsAndTransports(_objectTypeResolver, _objectPathFactory);;
 }