1 using Castle
.Core
.Resource
;
2 using Castle
.MicroKernel
.SubSystems
.Configuration
;
4 using Castle
.Windsor
.Configuration
.Interpreters
;
8 namespace Castle
.Igloo
.Test
11 public abstract class BaseTest
13 protected WindsorContainer container
= null;
15 #region SetUp & TearDown
21 public virtual void FixtureSetUp()
23 DefaultConfigurationStore store
= new DefaultConfigurationStore();
24 XmlInterpreter interpreter
= new XmlInterpreter(new ConfigResource());
25 interpreter
.ProcessResource(interpreter
.Source
, store
);
27 container
= new WindsorContainer(interpreter
);
34 public virtual void FixtureTearDown()