public void FromJsonString_Should_DeserializeJsonStringCorrectly_WithJsonSerializerOptions_WithoutIgnoreNullValues()
        {
            ClientJoinAcceptedEvent clientJoinAcceptedEvent = ClientJoinAcceptedEvent.FromJsonString(JsonString_WithJsonSerializerOptions_WithoutIgnoreNullValues, SerializationTests.JsonSerializerOptions_WithoutIgnoreNullValues);

            Assert.Equal(Example.EventId, clientJoinAcceptedEvent.EventId);
            Assert.Equal(Example.ClientIdentifier, clientJoinAcceptedEvent.ClientIdentifier);
            Assert.Equal(Example.FragmentSize, clientJoinAcceptedEvent.FragmentSize);
            Assert.Equal(Example.AddFileInfos, clientJoinAcceptedEvent.AddFileInfos);
            Assert.Equal(Example.AddFragmentInfos, clientJoinAcceptedEvent.AddFragmentInfos);
            Assert.Equal(Example.RemoveFileInfos, clientJoinAcceptedEvent.RemoveFileInfos);
            Assert.Equal(Example.RemoveFragmentInfos, clientJoinAcceptedEvent.RemoveFragmentInfos);
            Assert.Equal(Example.Clients, clientJoinAcceptedEvent.Clients);
        }