CQRS.Tests.CQRS.EventSourcing.EventRefactoring.When_renaming_events.When_mapping_names_for_classes_with_no_renaming_attribute.Event_type_maps_to_events_full_name C# (CSharp) Method

Event_type_maps_to_events_full_name() private method

private Event_type_maps_to_events_full_name ( ) : void
return void
        public void Event_type_maps_to_events_full_name()
        {
            _nameMapper.GetName(typeof(Event1)).Should().Be(typeof(Event1).FullName);
            _nameMapper.GetName(typeof(Event2)).Should().Be(typeof(Event2).FullName);
        }