Exemplo n.º 1
0
 public void SetUp()
 {
     buffer    = new PriorEventBufferSingle(1);
     view      = new PriorEventView(buffer);
     childView = new SupportBeanClassView(typeof(SupportMarketDataBean));
     view.AddView(childView);
 }
Exemplo n.º 2
0
        public void SetUp()
        {
            _buffer = new PriorEventBufferSingle(3);

            _events = new EventBean[100];
            for (int i = 0; i < _events.Length; i++)
            {
                SupportBean_S0 bean = new SupportBean_S0(i);
                _events[i] = SupportEventBeanFactory.CreateObject(bean);
            }
        }