Skip to content

Commit

Permalink
More tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
cincuranet committed Dec 12, 2024
1 parent 2a43a82 commit cca2c26
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,13 @@ public override Task Multiple_occurrences_of_FromSql_with_db_parameter_adds_para
return base.Multiple_occurrences_of_FromSql_with_db_parameter_adds_parameter_only_once(async);
}

[Theory(Skip = "Firebird matches the casing exactly. Frankly the test is weird.")]
[MemberData(nameof(IsAsyncData))]
public override Task FromSqlRaw_queryable_simple_different_cased_columns_and_not_enough_columns_throws(bool async)
{
return base.FromSqlRaw_queryable_simple_different_cased_columns_and_not_enough_columns_throws(async);
}

protected override DbParameter CreateDbParameter(string name, object value)
=> new FbParameter { ParameterName = name, Value = value };
}

0 comments on commit cca2c26

Please sign in to comment.