File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
Orm/Xtensive.Orm.Tests/Storage Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -22,13 +22,17 @@ public class TypeIdAsParameterTest : AutoBuildTest
22
22
private readonly Dictionary < Type , int > additionalNode1TypeIds = new ( ) ;
23
23
private readonly Dictionary < Type , int > additionalNode2TypeIds = new ( ) ;
24
24
25
- private bool IsMultischema { get ; } = StorageProviderInfo . Instance . CheckAllFeaturesSupported ( Orm . Providers . ProviderFeatures . Multischema ) ;
26
-
27
- public static IEnumerable < string > NodeIdentifiers {
25
+ public static IEnumerable < string > NodeIdentifiers
26
+ {
28
27
get => StorageProviderInfo . Instance . CheckAllFeaturesSupported ( Orm . Providers . ProviderFeatures . Multischema )
29
28
? new [ ] { WellKnown . DefaultNodeId , AdditionalNode1Name , AdditionalNode2Name }
30
29
: new [ ] { WellKnown . DefaultNodeId } ;
31
- }
30
+ }
31
+
32
+ private bool IsMultischema { get ; } = StorageProviderInfo . Instance . CheckAllFeaturesSupported ( Orm . Providers . ProviderFeatures . Multischema ) ;
33
+
34
+ [ OneTimeSetUp ]
35
+ public void OneTimeSetup ( ) => Require . ProviderIsNot ( StorageProvider . Firebird ) ;
32
36
33
37
protected override DomainConfiguration BuildConfiguration ( )
34
38
{
You can’t perform that action at this time.
0 commit comments