public When_saving_events_with_wrong_id()
        {
            var eventStore = new TestInMemoryEventStore();

            _rep = new Repository(eventStore);

            _aggregate = new TestAggregate(Guid.NewGuid());
            _aggregate.ApplyChangeProxy(new TestAggregateDidSomething {
                Id = Guid.NewGuid()
            });
        }