CQRS.Tests.CQRS.EventSourcing.EventRefactoring.When_renaming_events.When_mapping_names_for_classes_with_no_renaming_attribute.Events_full_name_maps_to_event_type C# (CSharp) Метод

Events_full_name_maps_to_event_type() приватный Метод

private Events_full_name_maps_to_event_type ( ) : void
Результат void
        public void Events_full_name_maps_to_event_type()
        {
            _nameMapper.GetType(typeof(Event1).FullName).Should().Be(typeof(Event1));
            _nameMapper.GetType(typeof(Event2).FullName).Should().Be(typeof(Event2));
        }