public EventAggregatorRepositoryTest()
        {
            _fixture = new Fixture().Customize(new SupportMutableValueTypesCustomization());

            _aggregator = Fake <IEventAggregator <int> >();
            _factory    = Fake <IEventAggregatorFactory>();
            CallTo(() => _factory.Create <int>()).Returns(_aggregator);
            _name = _fixture.Create <Name>();
        }
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="factory">The utilized <see cref="IEventAggregatorFactory"/></param>
 internal EventAggregatorRepository(IEventAggregatorFactory factory) =>