public static void GetCheckLookup_ForIdentifierResolvingOverloadGivenNullTable_ThrowsArgumentNullException()
        {
            var resolver = new VerbatimIdentifierResolutionStrategy();

            Assert.That(() => RelationalDatabaseTableExtensions.GetCheckLookup(null, resolver), Throws.ArgumentNullException);
        }
 public static void GetCheckLookup_GivenNullTable_ThrowsArgumentNullException()
 {
     Assert.That(() => RelationalDatabaseTableExtensions.GetCheckLookup(null), Throws.ArgumentNullException);
 }