Skip to content

Commit edaf9da

Browse files
committed
Adds lacking check for multischema functionality
1 parent 1e698c0 commit edaf9da

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

Extensions/Xtensive.Orm.Localization.Tests/MultipleNodesTest.cs

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// Copyright (C) 2019 Xtensive LLC.
2-
// All rights reserved.
3-
// For conditions of distribution and use, see license.
1+
// Copyright (C) 2019-2020 Xtensive LLC.
2+
// This code is distributed under MIT license terms.
3+
// See the License.txt file in the project root for more information.
44
// Created by: Alexey Kulakov
55
// Created: 2019.12.04
66

@@ -10,6 +10,7 @@
1010
using TestCommon;
1111
using Xtensive.Orm.Configuration;
1212
using Xtensive.Orm.Localization.Tests.Model;
13+
using Xtensive.Orm.Tests;
1314

1415
namespace Xtensive.Orm.Localization.Tests
1516
{
@@ -29,6 +30,11 @@ public class MultipleNodesTest : CommonModelTest
2930
private static string SpanishTitle = "Bienvenido!";
3031
private static string SpanishContent = "Mis amigos mejores! Bienvenido a mi cumpleanos!";
3132

33+
protected override void CheckRequirements()
34+
{
35+
Require.AllFeaturesSupported(Providers.ProviderFeatures.Multischema);
36+
}
37+
3238
protected override Domain BuildDomain(DomainConfiguration configuration)
3339
{
3440
var domain = base.BuildDomain(configuration);

0 commit comments

Comments
 (0)