Example #1
0
		public void A_configuration_object_is_bound()
		{
			const string json = @"{ Inner: { Value: 47 } }";

			_binder = ConfigurationBinderFactory.New(x => { x.AddJson(json); });

			_configuration = _binder.Bind<OuterLevel>();
		}
Example #2
0
        public void A_configuration_object_is_bound()
        {
            const string json = @"{ Inner: { Value: 47 } }";

            _binder = ConfigurationBinderFactory.New(x => { x.AddJson(json); });

            _configuration = _binder.Bind <OuterLevel>();
        }