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));
        }