File tree 5 files changed +13
-6
lines changed
Orm/Xtensive.Orm.Tests/Upgrade
5 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 1
- // Copyright (C) 2016 Xtensive LLC.
1
+ // Copyright (C) 2016 Xtensive LLC.
2
2
// All rights reserved.
3
3
// For conditions of distribution and use, see license.
4
4
// Created by: Alexey Kulakov
@@ -25,6 +25,7 @@ public class DatabasePerNodeTest
25
25
[ Explicit ]
26
26
public void SequentialBuildingTest ( )
27
27
{
28
+ CheckRequirements ( ) ;
28
29
using ( var domain = BuildDomain ( BuildConfiguration ( ) , false ) ) {
29
30
PopulateData ( domain ) ;
30
31
}
@@ -43,6 +44,7 @@ public void SequentialBuildingTest()
43
44
[ Explicit ]
44
45
public void ParallelBuildingTest ( )
45
46
{
47
+ CheckRequirements ( ) ;
46
48
using ( var domain = BuildDomain ( BuildConfiguration ( ) , false ) ) {
47
49
PopulateData ( domain ) ;
48
50
}
Original file line number Diff line number Diff line change 1
- // Copyright (C) 2016 Xtensive LLC.
1
+ // Copyright (C) 2016 Xtensive LLC.
2
2
// All rights reserved.
3
3
// For conditions of distribution and use, see license.
4
4
// Created by: Alexey Kulakov
@@ -21,6 +21,7 @@ public class MappedTypesNodesTest
21
21
[ Explicit ]
22
22
public void SequentialBuildingTest ( )
23
23
{
24
+ CheckRequirements ( ) ;
24
25
using ( var domain = BuildDomain ( BuildConfiguration ( ) , false ) ) {
25
26
PopulateData ( domain ) ;
26
27
}
@@ -40,6 +41,7 @@ public void SequentialBuildingTest()
40
41
[ Explicit ]
41
42
public void ParallelBuildingTest ( )
42
43
{
44
+ CheckRequirements ( ) ;
43
45
using ( var domain = BuildDomain ( BuildConfiguration ( ) , false ) ) {
44
46
PopulateData ( domain ) ;
45
47
}
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ public class SchemaPerNodeTest
20
20
[ Explicit ]
21
21
public void SequentialBuildingTest ( )
22
22
{
23
+ CheckRequirements ( ) ;
23
24
using ( var domain = BuildDomain ( BuildConfiguration ( ) ) ) {
24
25
PopulateData ( domain ) ;
25
26
}
Original file line number Diff line number Diff line change 1
- // Copyright (C) 2016 Xtensive LLC.
1
+ // Copyright (C) 2016 Xtensive LLC.
2
2
// All rights reserved.
3
3
// For conditions of distribution and use, see license.
4
4
// Created by: Alexey Kulakov
@@ -21,6 +21,7 @@ public class TwoDatabasesPerNodeTest
21
21
[ Explicit ]
22
22
public void SequentialBuildingTest ( )
23
23
{
24
+ CheckRequirements ( ) ;
24
25
using ( var domain = BuildDomain ( BuildConfiguration ( ) , false ) ) {
25
26
PopulateData ( domain ) ;
26
27
}
@@ -39,6 +40,7 @@ public void SequentialBuildingTest()
39
40
[ Explicit ]
40
41
public void ParallelBuildingTest ( )
41
42
{
43
+ CheckRequirements ( ) ;
42
44
using ( var domain = BuildDomain ( BuildConfiguration ( ) , false ) ) {
43
45
PopulateData ( domain ) ;
44
46
}
Original file line number Diff line number Diff line change 1
- using System ;
1
+ using System ;
2
2
using System . Collections . Generic ;
3
3
using System . Threading . Tasks ;
4
4
using NUnit . Framework ;
@@ -16,8 +16,8 @@ public class TwoSchemasPerNode
16
16
[ Explicit ]
17
17
public void SequentialBuildingTest ( )
18
18
{
19
- using ( var domain = BuildDomain ( BuildConfiguration ( ) , false ) )
20
- {
19
+ CheckRequirements ( ) ;
20
+ using ( var domain = BuildDomain ( BuildConfiguration ( ) , false ) ) {
21
21
PopulateData ( domain ) ;
22
22
}
23
23
You can’t perform that action at this time.
0 commit comments