File tree Expand file tree Collapse file tree 5 files changed +13
-6
lines changed
Orm/Xtensive.Orm.Tests/Upgrade Expand file tree Collapse file tree 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.
22// All rights reserved.
33// For conditions of distribution and use, see license.
44// Created by: Alexey Kulakov
@@ -25,6 +25,7 @@ public class DatabasePerNodeTest
2525 [ Explicit ]
2626 public void SequentialBuildingTest ( )
2727 {
28+ CheckRequirements ( ) ;
2829 using ( var domain = BuildDomain ( BuildConfiguration ( ) , false ) ) {
2930 PopulateData ( domain ) ;
3031 }
@@ -43,6 +44,7 @@ public void SequentialBuildingTest()
4344 [ Explicit ]
4445 public void ParallelBuildingTest ( )
4546 {
47+ CheckRequirements ( ) ;
4648 using ( var domain = BuildDomain ( BuildConfiguration ( ) , false ) ) {
4749 PopulateData ( domain ) ;
4850 }
Original file line number Diff line number Diff line change 1- // Copyright (C) 2016 Xtensive LLC.
1+ // Copyright (C) 2016 Xtensive LLC.
22// All rights reserved.
33// For conditions of distribution and use, see license.
44// Created by: Alexey Kulakov
@@ -21,6 +21,7 @@ public class MappedTypesNodesTest
2121 [ Explicit ]
2222 public void SequentialBuildingTest ( )
2323 {
24+ CheckRequirements ( ) ;
2425 using ( var domain = BuildDomain ( BuildConfiguration ( ) , false ) ) {
2526 PopulateData ( domain ) ;
2627 }
@@ -40,6 +41,7 @@ public void SequentialBuildingTest()
4041 [ Explicit ]
4142 public void ParallelBuildingTest ( )
4243 {
44+ CheckRequirements ( ) ;
4345 using ( var domain = BuildDomain ( BuildConfiguration ( ) , false ) ) {
4446 PopulateData ( domain ) ;
4547 }
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ public class SchemaPerNodeTest
2020 [ Explicit ]
2121 public void SequentialBuildingTest ( )
2222 {
23+ CheckRequirements ( ) ;
2324 using ( var domain = BuildDomain ( BuildConfiguration ( ) ) ) {
2425 PopulateData ( domain ) ;
2526 }
Original file line number Diff line number Diff line change 1- // Copyright (C) 2016 Xtensive LLC.
1+ // Copyright (C) 2016 Xtensive LLC.
22// All rights reserved.
33// For conditions of distribution and use, see license.
44// Created by: Alexey Kulakov
@@ -21,6 +21,7 @@ public class TwoDatabasesPerNodeTest
2121 [ Explicit ]
2222 public void SequentialBuildingTest ( )
2323 {
24+ CheckRequirements ( ) ;
2425 using ( var domain = BuildDomain ( BuildConfiguration ( ) , false ) ) {
2526 PopulateData ( domain ) ;
2627 }
@@ -39,6 +40,7 @@ public void SequentialBuildingTest()
3940 [ Explicit ]
4041 public void ParallelBuildingTest ( )
4142 {
43+ CheckRequirements ( ) ;
4244 using ( var domain = BuildDomain ( BuildConfiguration ( ) , false ) ) {
4345 PopulateData ( domain ) ;
4446 }
Original file line number Diff line number Diff line change 1- using System ;
1+ using System ;
22using System . Collections . Generic ;
33using System . Threading . Tasks ;
44using NUnit . Framework ;
@@ -16,8 +16,8 @@ public class TwoSchemasPerNode
1616 [ Explicit ]
1717 public void SequentialBuildingTest ( )
1818 {
19- using ( var domain = BuildDomain ( BuildConfiguration ( ) , false ) )
20- {
19+ CheckRequirements ( ) ;
20+ using ( var domain = BuildDomain ( BuildConfiguration ( ) , false ) ) {
2121 PopulateData ( domain ) ;
2222 }
2323
You can’t perform that action at this time.
0 commit comments