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
2222 private readonly Dictionary < Type , int > additionalNode1TypeIds = new ( ) ;
2323 private readonly Dictionary < Type , int > additionalNode2TypeIds = new ( ) ;
2424
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+ {
2827 get => StorageProviderInfo . Instance . CheckAllFeaturesSupported ( Orm . Providers . ProviderFeatures . Multischema )
2928 ? new [ ] { WellKnown . DefaultNodeId , AdditionalNode1Name , AdditionalNode2Name }
3029 : 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 ) ;
3236
3337 protected override DomainConfiguration BuildConfiguration ( )
3438 {
You can’t perform that action at this time.
0 commit comments