public void SendsTheAuditEventEncodedAsCompactJsonDataImmediately()
        {
            var client = new SerilogAzureEventHubsAuditClient(
                new SerilogAzureEventHubsAuditClientConfiguration
            {
                ConnectionString     = "intentionally-invalid",
                EnrichFromLogContext = true,
            });

            using (LogContext.PushProperty("LogContext", "AValueOnLogContext"))
            {
                client
                .ForContext("ForContext", "AValueViaForContext")
                .Write("Hey hey, from {Source}", nameof(SerilogAzureEventHubsAuditClientTests));
            }
        }