Ejemplo n.º 1
0
        public DynamicTests()
        {
            eventJournal = Substitute.For <IEventJournal>();
            var timeMachine = new TimeMachine <TestEntity>(eventJournal);

            entity  = new TestEntity(11, "John Doe");
            wrapper = timeMachine.Wrap(entity);
        }