public static void QuoteName_GivenWhiteSpace_ThrowsArgumentNullException() { var dialect = new OracleDialect(); Assert.That(() => dialect.QuoteName(" "), Throws.ArgumentNullException); }
public static void QuoteName_GivenEmptyString_ThrowsArgumentNullException() { var dialect = new OracleDialect(); Assert.That(() => dialect.QuoteName(string.Empty), Throws.ArgumentNullException); }