public static void RemoveLogging_GivenNullConnection_ThrowsArgumentxception()
 {
     Assert.That(() => SchematicConnectionExtensions.RemoveLogging(null), Throws.ArgumentNullException);
 }
 public static void SetMaxConcurrentQueries_GivenNullConnection_ThrowsArgNullException()
 {
     Assert.That(() => SchematicConnectionExtensions.SetMaxConcurrentQueries(null, 100), Throws.ArgumentNullException);
 }
 public static void AddLogging_GivenNullConnection_ThrowsArgumentNullException()
 {
     Assert.That(() => SchematicConnectionExtensions.AddLogging(null, Mock.Of <ILoggerFactory>(), LogLevel.Information), Throws.ArgumentNullException);
 }