protected void SetUp() { XmlConfigurator.Configure(new FileInfo("config/log4net.properties")); dLog.Info("Beginning OrderManagerTestCase Setup"); rand = new Random(); try { //oManager = new OrderManager(); //bManager = new BurritoManager(); //Spring.NET XmlApplicationContext ctx = new XmlApplicationContext("config/spring.cfg.xml"); oManager = (OrderManager)ctx.GetObject("OrderManager"); bManager = (BurritoManager)ctx.GetObject("BurritoManager"); o = new Order(rand.Next(), new List <Burrito>(), new DateTime(), false, false, new Decimal(0)); b = new Burrito(rand.Next(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), new Decimal(rand.NextDouble())); b.Price = bManager.calculatePrice(b); } catch (Exception e) { dLog.Error("Unable to initialize service/domain objects: " + e.Message + "\n" + e.StackTrace); } dLog.Info("Finishing OrderManagerTestCase Setup"); }
/// <summary> /// /// </summary> public BurritoDialog(Inventory _i) { try { //Spring.NET XmlApplicationContext ctx = new XmlApplicationContext("config/spring.cfg.xml"); bManager = (BurritoManager)ctx.GetObject("BurritoManager"); rand = new Random(); newBurrito = new Burrito(); curInventory = _i; initAvailableOptions(); } catch (Exception e) { dLog.Debug("Exception | Unable to initialize business layer components: " + e.Message + "\n" + e.StackTrace); } InitializeComponent(); }