public void OpeningExactHandicapAddedEvent_CanBeCreated_IsCreated()
        {
            OpeningExactHandicapAddedEvent openingExactHandicapAddedEvent = OpeningExactHandicapAddedEvent.Create(PlayerTestData.AggregateId,
                                                                                                                  PlayerTestData.ExactHandicap);

            openingExactHandicapAddedEvent.ShouldNotBeNull();
            openingExactHandicapAddedEvent.AggregateId.ShouldBe(PlayerTestData.AggregateId);
            openingExactHandicapAddedEvent.EventId.ShouldNotBe(Guid.Empty);
            openingExactHandicapAddedEvent.EventCreatedDateTime.ShouldNotBe(DateTime.MinValue);
            openingExactHandicapAddedEvent.ExactHandicap.ShouldBe(PlayerTestData.ExactHandicap);
        }