public void FixtureSetUp()
        {
            theRunner = new EmbeddedDatabaseRunner();
            theRunner.Start();

            container = new Container(x => {
                x.IncludeRegistry<RavenDbRegistry>();
                x.For<RavenDbSettings>().Use(new RavenDbSettings {Url = "http://localhost:8080"});
            });
        }
Exemplo n.º 2
0
        public void FixtureSetUp()
        {
            theRunner = new EmbeddedDatabaseRunner();
            theRunner.Start();

            container = new Container(x => {
                x.IncludeRegistry <RavenDbRegistry>();
                x.For <RavenDbSettings>().Use(new RavenDbSettings {
                    Url = "http://localhost:8080"
                });
            });
        }