Ejemplo n.º 1
0
        public void RegisterService_can_be_called_multiple_times_to_store_multiple_implementations()
        {
            var graph = new BehaviorGraph(null);
            graph.Services.AddService<IRequestData, RequestData>();
            graph.Services.AddService<IRequestData, InMemoryRequestData>();

            var implementations = new List<Type>();
            graph.EachService((t, def) => { if (t == typeof (IRequestData)) implementations.Add(def.Type); });

            implementations.ShouldContain(typeof (RequestData));
            implementations.ShouldContain(typeof (InMemoryRequestData));
        }
Ejemplo n.º 2
0
        public void RegisterService_can_be_called_multiple_times_to_store_multiple_implementations()
        {
            var graph = new BehaviorGraph(null);

            graph.Services.AddService <IRequestData, RequestData>();
            graph.Services.AddService <IRequestData, InMemoryRequestData>();

            var implementations = new List <Type>();

            graph.EachService((t, def) => { if (t == typeof(IRequestData))
                                            {
                                                implementations.Add(def.Type);
                                            }
                              });

            implementations.ShouldContain(typeof(RequestData));
            implementations.ShouldContain(typeof(InMemoryRequestData));
        }
Ejemplo n.º 3
0
        private IEnumerable <IActivator> startApplication()
        {
            // Building up the facility first forces the creation of the container
            // and executes any additional bootstrapping done in the respective lambdas
            facility.SpinUp();


            registry()
            .Services(_fubuFacility.RegisterServices);

            _registryModifications.Each(m => m(registry()));

            FindAllExtensions().Each(x => x.Configure(registry()));

            // "Bake" the fubu configuration model into your
            // IoC container for the application
            _graph = registry().BuildGraph();
            _graph.EachService(facility.Register);
            facility.BuildFactory();

            return(facility.GetAllActivators());
        }
        public void SetUp()
        {
            container = new Container();
            graph = new FubuRegistry(x =>
            {
                x.Route<InputModel>("/area/sub/{Name}/{Age}")
                    .Calls<TestController>(c => c.AnotherAction(null)).OutputToJson();

                x.Route<InputModel>("/area/sub2/{Name}/{Age}")
                    .Calls<TestController>(c => c.AnotherAction(null)).OutputToJson();

                x.Route<InputModel>("/area/sub3/{Name}/{Age}")
                    .Calls<TestController>(c => c.AnotherAction(null)).OutputToJson();
                x.Models.ConvertUsing<ExampleConverter>().ConvertUsing<ExampleConverter2>();
            }).BuildGraph();

            facility = new StructureMapContainerFacility(container);
            graph.EachService(facility.Register);

            factory = facility.BuildFactory();
        }