File tree Expand file tree Collapse file tree 35 files changed +124
-166
lines changed
com.ibm.ws.transaction.cloud_fat.db2.0/fat/src/suite
com.ibm.ws.transaction.cloud_fat.db2.1/fat/src/suite
com.ibm.ws.transaction.cloud_fat.db2.2/fat/src/suite
com.ibm.ws.transaction.cloud_fat.db2.3/fat/src/suite
com.ibm.ws.transaction.cloud_fat.db2.4/fat/src/suite
com.ibm.ws.transaction.cloud_fat.db2.5/fat/src/suite
com.ibm.ws.transaction.cloud_fat.db2.6/fat/src/suite
com.ibm.ws.transaction.cloud_fat.derby.0/fat/src/suite
com.ibm.ws.transaction.cloud_fat.derby.1/fat/src/suite
com.ibm.ws.transaction.cloud_fat.derby.2/fat/src/suite
com.ibm.ws.transaction.cloud_fat.derby.3/fat/src/suite
com.ibm.ws.transaction.cloud_fat.derby.4/fat/src/suite
com.ibm.ws.transaction.cloud_fat.derby.5/fat/src/suite
com.ibm.ws.transaction.cloud_fat.derby.6/fat/src/suite
com.ibm.ws.transaction.cloud_fat.oracle.0/fat/src/suite
com.ibm.ws.transaction.cloud_fat.oracle.1/fat/src/suite
com.ibm.ws.transaction.cloud_fat.oracle.2/fat/src/suite
com.ibm.ws.transaction.cloud_fat.oracle.3/fat/src/suite
com.ibm.ws.transaction.cloud_fat.oracle.4/fat/src/suite
com.ibm.ws.transaction.cloud_fat.oracle.5/fat/src/suite
com.ibm.ws.transaction.cloud_fat.oracle.6/fat/src/suite
com.ibm.ws.transaction.cloud_fat.postgresql.0/fat/src/suite
com.ibm.ws.transaction.cloud_fat.postgresql.1/fat/src/suite
com.ibm.ws.transaction.cloud_fat.postgresql.2/fat/src/suite
com.ibm.ws.transaction.cloud_fat.postgresql.3/fat/src/suite
com.ibm.ws.transaction.cloud_fat.postgresql.4/fat/src/suite
com.ibm.ws.transaction.cloud_fat.postgresql.5/fat/src/suite
com.ibm.ws.transaction.cloud_fat.postgresql.6/fat/src/suite
com.ibm.ws.transaction.cloud_fat.sqlserver.0/fat/src/suite
com.ibm.ws.transaction.cloud_fat.sqlserver.1/fat/src/suite
com.ibm.ws.transaction.cloud_fat.sqlserver.2/fat/src/suite
com.ibm.ws.transaction.cloud_fat.sqlserver.3/fat/src/suite
com.ibm.ws.transaction.cloud_fat.sqlserver.4/fat/src/suite
com.ibm.ws.transaction.cloud_fat.sqlserver.5/fat/src/suite
com.ibm.ws.transaction.cloud_fat.sqlserver.6/fat/src/suite Expand file tree Collapse file tree 35 files changed +124
-166
lines changed Original file line number Diff line number Diff line change 12
12
*******************************************************************************/
13
13
package suite ;
14
14
15
+ import org .junit .ClassRule ;
15
16
import org .junit .runner .RunWith ;
16
17
import org .junit .runners .Suite ;
17
18
import org .junit .runners .Suite .SuiteClasses ;
18
19
19
20
import com .ibm .ws .transaction .fat .util .TxTestContainerSuite ;
21
+ import com .ibm .ws .transaction .fat .util .TxTestDB ;
20
22
21
23
import componenttest .custom .junit .runner .AlwaysPassesTest ;
22
24
import componenttest .topology .database .container .DatabaseContainerType ;
30
32
})
31
33
public class FATSuite extends TxTestContainerSuite {
32
34
33
- static {
34
- beforeSuite (DatabaseContainerType .DB2 );
35
- }
35
+ @ ClassRule
36
+ public static TxTestDB p = new TxTestDB (DatabaseContainerType .DB2 );
36
37
}
Original file line number Diff line number Diff line change 1
1
/*******************************************************************************
2
- * Copyright (c) 2021, 2023 IBM Corporation and others.
2
+ * Copyright (c) 2021, 2025 IBM Corporation and others.
3
3
* All rights reserved. This program and the accompanying materials
4
4
* are made available under the terms of the Eclipse Public License 2.0
5
5
* which accompanies this distribution, and is available at
18
18
import org .junit .runners .Suite .SuiteClasses ;
19
19
20
20
import com .ibm .ws .transaction .fat .util .TxTestContainerSuite ;
21
+ import com .ibm .ws .transaction .fat .util .TxTestDB ;
21
22
22
23
import componenttest .custom .junit .runner .AlwaysPassesTest ;
23
24
import componenttest .rules .repeater .FeatureReplacementAction ;
33
34
})
34
35
public class FATSuite extends TxTestContainerSuite {
35
36
36
- static {
37
- beforeSuite (DatabaseContainerType .DB2 );
38
- }
37
+ @ ClassRule
38
+ public static TxTestDB p = new TxTestDB (DatabaseContainerType .DB2 );
39
39
40
40
@ ClassRule
41
41
public static RepeatTests r = RepeatTests .withoutModificationInFullMode ()
Original file line number Diff line number Diff line change 1
1
/*******************************************************************************
2
- * Copyright (c) 2021, 2023 IBM Corporation and others.
2
+ * Copyright (c) 2021, 2025 IBM Corporation and others.
3
3
* All rights reserved. This program and the accompanying materials
4
4
* are made available under the terms of the Eclipse Public License 2.0
5
5
* which accompanies this distribution, and is available at
18
18
import org .junit .runners .Suite .SuiteClasses ;
19
19
20
20
import com .ibm .ws .transaction .fat .util .TxTestContainerSuite ;
21
+ import com .ibm .ws .transaction .fat .util .TxTestDB ;
21
22
22
23
import componenttest .custom .junit .runner .AlwaysPassesTest ;
23
24
import componenttest .rules .repeater .FeatureReplacementAction ;
33
34
})
34
35
public class FATSuite extends TxTestContainerSuite {
35
36
36
- static {
37
- beforeSuite (DatabaseContainerType .DB2 );
38
- }
37
+ @ ClassRule
38
+ public static TxTestDB p = new TxTestDB (DatabaseContainerType .DB2 );
39
39
40
40
@ ClassRule
41
41
public static RepeatTests r = RepeatTests .withoutModificationInFullMode ()
Original file line number Diff line number Diff line change 18
18
import org .junit .runners .Suite .SuiteClasses ;
19
19
20
20
import com .ibm .ws .transaction .fat .util .TxTestContainerSuite ;
21
+ import com .ibm .ws .transaction .fat .util .TxTestDB ;
21
22
22
23
import componenttest .custom .junit .runner .AlwaysPassesTest ;
23
24
import componenttest .rules .repeater .FeatureReplacementAction ;
33
34
})
34
35
public class FATSuite extends TxTestContainerSuite {
35
36
36
- static {
37
- beforeSuite (DatabaseContainerType .DB2 );
38
- }
37
+ @ ClassRule
38
+ public static TxTestDB p = new TxTestDB (DatabaseContainerType .DB2 );
39
39
40
40
@ ClassRule
41
41
public static RepeatTests r = RepeatTests .withoutModificationInFullMode ()
Original file line number Diff line number Diff line change 18
18
import org .junit .runners .Suite .SuiteClasses ;
19
19
20
20
import com .ibm .ws .transaction .fat .util .TxTestContainerSuite ;
21
+ import com .ibm .ws .transaction .fat .util .TxTestDB ;
21
22
22
23
import componenttest .custom .junit .runner .AlwaysPassesTest ;
23
24
import componenttest .rules .repeater .FeatureReplacementAction ;
33
34
})
34
35
public class FATSuite extends TxTestContainerSuite {
35
36
36
- static {
37
- beforeSuite (DatabaseContainerType .DB2 );
38
- }
37
+ @ ClassRule
38
+ public static TxTestDB p = new TxTestDB (DatabaseContainerType .DB2 );
39
39
40
40
@ ClassRule
41
41
public static RepeatTests r = RepeatTests .with (FeatureReplacementAction .EE8_FEATURES ().forServers (DBRotationTest .serverNames ));
Original file line number Diff line number Diff line change 18
18
import org .junit .runners .Suite .SuiteClasses ;
19
19
20
20
import com .ibm .ws .transaction .fat .util .TxTestContainerSuite ;
21
+ import com .ibm .ws .transaction .fat .util .TxTestDB ;
21
22
22
23
import componenttest .custom .junit .runner .AlwaysPassesTest ;
23
24
import componenttest .rules .repeater .FeatureReplacementAction ;
33
34
})
34
35
public class FATSuite extends TxTestContainerSuite {
35
36
36
- static {
37
- beforeSuite (DatabaseContainerType .DB2 );
38
- }
37
+ @ ClassRule
38
+ public static TxTestDB p = new TxTestDB (DatabaseContainerType .DB2 );
39
39
40
40
@ ClassRule
41
41
public static RepeatTests r = RepeatTests .with (FeatureReplacementAction .EE9_FEATURES ().forServers (DBRotationTest .serverNames ));
Original file line number Diff line number Diff line change 18
18
import org .junit .runners .Suite .SuiteClasses ;
19
19
20
20
import com .ibm .ws .transaction .fat .util .TxTestContainerSuite ;
21
+ import com .ibm .ws .transaction .fat .util .TxTestDB ;
21
22
22
23
import componenttest .custom .junit .runner .AlwaysPassesTest ;
23
24
import componenttest .rules .repeater .FeatureReplacementAction ;
33
34
})
34
35
public class FATSuite extends TxTestContainerSuite {
35
36
36
- static {
37
- beforeSuite (DatabaseContainerType .DB2 );
38
- }
37
+ @ ClassRule
38
+ public static TxTestDB p = new TxTestDB (DatabaseContainerType .DB2 );
39
39
40
40
@ ClassRule
41
41
public static RepeatTests r = RepeatTests .with (FeatureReplacementAction .EE10_FEATURES ().forServers (DBRotationTest .serverNames ));
Original file line number Diff line number Diff line change 12
12
*******************************************************************************/
13
13
package suite ;
14
14
15
+ import org .junit .ClassRule ;
15
16
import org .junit .runner .RunWith ;
16
17
import org .junit .runners .Suite ;
17
18
import org .junit .runners .Suite .SuiteClasses ;
18
19
19
20
import com .ibm .ws .transaction .fat .util .TxTestContainerSuite ;
21
+ import com .ibm .ws .transaction .fat .util .TxTestDB ;
20
22
21
23
import componenttest .custom .junit .runner .AlwaysPassesTest ;
22
24
import componenttest .topology .database .container .DatabaseContainerType ;
@@ -32,6 +34,8 @@ public class FATSuite extends TxTestContainerSuite {
32
34
33
35
static {
34
36
DBRotationTest .setDerby ();
35
- beforeSuite (DatabaseContainerType .Derby );
36
37
}
38
+
39
+ @ ClassRule
40
+ public static TxTestDB p = new TxTestDB (DatabaseContainerType .Derby );
37
41
}
Original file line number Diff line number Diff line change 1
1
/*******************************************************************************
2
- * Copyright (c) 2021, 2023 IBM Corporation and others.
2
+ * Copyright (c) 2021, 2025 IBM Corporation and others.
3
3
* All rights reserved. This program and the accompanying materials
4
4
* are made available under the terms of the Eclipse Public License 2.0
5
5
* which accompanies this distribution, and is available at
18
18
import org .junit .runners .Suite .SuiteClasses ;
19
19
20
20
import com .ibm .ws .transaction .fat .util .TxTestContainerSuite ;
21
+ import com .ibm .ws .transaction .fat .util .TxTestDB ;
21
22
22
23
import componenttest .custom .junit .runner .AlwaysPassesTest ;
23
24
import componenttest .rules .repeater .FeatureReplacementAction ;
24
25
import componenttest .rules .repeater .RepeatTests ;
25
26
import componenttest .topology .database .container .DatabaseContainerType ;
27
+ import tests .DBRotationTest ;
26
28
import tests .DualServerDynamicDBRotationTest1 ;
27
29
28
30
@ RunWith (Suite .class )
33
35
})
34
36
public class FATSuite extends TxTestContainerSuite {
35
37
36
- static {
37
- beforeSuite (DatabaseContainerType .Derby );
38
- }
38
+ @ ClassRule
39
+ public static TxTestDB p = new TxTestDB (DatabaseContainerType .Derby );
39
40
40
41
@ ClassRule
41
42
public static RepeatTests r = RepeatTests .withoutModificationInFullMode ()
Original file line number Diff line number Diff line change 1
1
/*******************************************************************************
2
- * Copyright (c) 2021, 2023 IBM Corporation and others.
2
+ * Copyright (c) 2021, 2025 IBM Corporation and others.
3
3
* All rights reserved. This program and the accompanying materials
4
4
* are made available under the terms of the Eclipse Public License 2.0
5
5
* which accompanies this distribution, and is available at
18
18
import org .junit .runners .Suite .SuiteClasses ;
19
19
20
20
import com .ibm .ws .transaction .fat .util .TxTestContainerSuite ;
21
+ import com .ibm .ws .transaction .fat .util .TxTestDB ;
21
22
22
23
import componenttest .custom .junit .runner .AlwaysPassesTest ;
23
24
import componenttest .rules .repeater .FeatureReplacementAction ;
33
34
})
34
35
public class FATSuite extends TxTestContainerSuite {
35
36
36
- static {
37
- beforeSuite (DatabaseContainerType .Derby );
38
- }
37
+ @ ClassRule
38
+ public static TxTestDB p = new TxTestDB (DatabaseContainerType .Derby );
39
39
40
40
@ ClassRule
41
41
public static RepeatTests r = RepeatTests .withoutModificationInFullMode ()
You can’t perform that action at this time.
0 commit comments