@@ -8,10 +8,6 @@ public class NpgsqlModelBuilderGenericTest : NpgsqlModelBuilderTestBase
8
8
{
9
9
public class NpgsqlGenericNonRelationship ( NpgsqlModelBuilderFixture fixture ) : NpgsqlNonRelationship ( fixture )
10
10
{
11
- // https://github.com/dotnet/efcore/issues/33059
12
- public override void Can_add_multiple_indexes ( )
13
- => Assert . Throws < EqualException > ( ( ) => base . Can_add_multiple_indexes ( ) ) ;
14
-
15
11
// PostgreSQL actually does support mapping multi-dimensional arrays, so no exception is thrown as expected
16
12
protected override void Mapping_throws_for_non_ignored_three_dimensional_array ( )
17
13
=> Assert . Throws < ThrowsException > ( ( ) => base . Mapping_throws_for_non_ignored_three_dimensional_array ( ) ) ;
@@ -23,14 +19,6 @@ protected override TestModelBuilder CreateModelBuilder(
23
19
24
20
public class NpgsqlGenericComplexType ( NpgsqlModelBuilderFixture fixture ) : NpgsqlComplexType ( fixture )
25
21
{
26
- // https://github.com/dotnet/efcore/issues/33059
27
- public override void Access_mode_can_be_overridden_at_entity_and_property_levels ( )
28
- => Assert . Throws < EqualException > ( ( ) => base . Access_mode_can_be_overridden_at_entity_and_property_levels ( ) ) ;
29
-
30
- // https://github.com/dotnet/efcore/issues/33059
31
- public override void Complex_properties_not_discovered_by_convention ( )
32
- => Assert . Throws < EqualException > ( ( ) => base . Complex_properties_not_discovered_by_convention ( ) ) ;
33
-
34
22
protected override TestModelBuilder CreateModelBuilder (
35
23
Action < ModelConfigurationBuilder > ? configure )
36
24
=> new GenericTestModelBuilder ( Fixture , configure ) ;
@@ -66,26 +54,13 @@ protected override TestModelBuilder CreateModelBuilder(
66
54
67
55
public class NpgsqlGenericManyToMany ( NpgsqlModelBuilderFixture fixture ) : NpgsqlManyToMany ( fixture )
68
56
{
69
- // https://github.com/dotnet/efcore/issues/33059
70
- public override void Can_use_implicit_shared_type_with_default_name_and_implicit_relationships_as_join_entity ( )
71
- => Assert . Throws < EqualException > (
72
- ( ) => base . Can_use_implicit_shared_type_with_default_name_and_implicit_relationships_as_join_entity ( ) ) ;
73
-
74
57
protected override TestModelBuilder CreateModelBuilder (
75
58
Action < ModelConfigurationBuilder > ? configure )
76
59
=> new GenericTestModelBuilder ( Fixture , configure ) ;
77
60
}
78
61
79
62
public class NpgsqlGenericOwnedTypes ( NpgsqlModelBuilderFixture fixture ) : NpgsqlOwnedTypes ( fixture )
80
63
{
81
- // https://github.com/dotnet/efcore/issues/33059
82
- public override void Can_configure_chained_ownerships ( )
83
- => Assert . Throws < EqualException > ( ( ) => base . Can_configure_chained_ownerships ( ) ) ;
84
-
85
- // https://github.com/dotnet/efcore/issues/33059
86
- public override void Can_configure_chained_ownerships_different_order ( )
87
- => Assert . Throws < EqualException > ( ( ) => base . Can_configure_chained_ownerships_different_order ( ) ) ;
88
-
89
64
// PostgreSQL stored procedures do not support result columns
90
65
public override void Can_use_sproc_mapping_with_owned_reference ( )
91
66
=> Assert . Throws < InvalidOperationException > ( ( ) => base . Can_use_sproc_mapping_with_owned_reference ( ) ) ;
0 commit comments