public void before()
		{
			context = new Context();
			dispatcher = new EventDispatcher();
			subject = new LifecycleEventRelay(context, dispatcher);
			reportedTypes = new List<object>();
		}
Esempio n. 2
0
 public void before()
 {
     context       = new Context();
     dispatcher    = new EventDispatcher();
     subject       = new LifecycleEventRelay(context, dispatcher);
     reportedTypes = new List <object>();
 }
		/*============================================================================*/
		/* Private Functions                                                          */
		/*============================================================================*/

		private void ConfigureLifecycleEventRelay()
		{
			_lifecycleRelay = new LifecycleEventRelay(_context, _eventDispatcher);
		}