Ejemplo n.º 1
0
        public void Setup()
        {
            module = new TestModule();
            var container = Container.Create(module);

            testObj = container.Get <NeedsProvider>();
        }
Ejemplo n.º 2
0
 public void Setup()
 {
     var container = Container.Create(typeof(TestModule));
     testObj = container.Get<NeedsProvider>();
 }
 public void Setup()
 {
     module = new TestModule();
     var container = Container.Create(module);
     testObj = container.Get<NeedsProvider>();
 }
Ejemplo n.º 4
0
        public void Setup()
        {
            var container = Container.Create(typeof(TestModule));

            testObj = container.Get <NeedsProvider>();
        }