1414import org .junit .jupiter .api .BeforeAll ;
1515import org .junit .jupiter .api .MethodOrderer ;
1616import org .junit .jupiter .api .Order ;
17+ import org .junit .jupiter .api .Tag ;
1718import org .junit .jupiter .api .Test ;
1819import org .junit .jupiter .api .TestMethodOrder ;
1920
@@ -85,6 +86,7 @@ static void staticUnprepare() throws Exception {
8586 */
8687 @ Test
8788 @ Order (1 )
89+ @ Tag ("gate" )
8890 void cacheListItems () throws Exception {
8991 String testMethodName = new Object () {}.getClass ().getEnclosingMethod ().getName ();
9092 logTestBegin (testMethodName );
@@ -105,6 +107,7 @@ void cacheListItems() throws Exception {
105107 */
106108 @ Test
107109 @ Order (2 )
110+ @ Tag ("gate" )
108111 void cacheAddInstallerJDK () throws Exception {
109112 String testMethodName = new Object () {}.getClass ().getEnclosingMethod ().getName ();
110113 logTestBegin (testMethodName );
@@ -127,6 +130,7 @@ void cacheAddInstallerJDK() throws Exception {
127130 */
128131 @ Test
129132 @ Order (3 )
133+ @ Tag ("gate" )
130134 void cacheAddInstallerWls () throws Exception {
131135 String testMethodName = new Object () {}.getClass ().getEnclosingMethod ().getName ();
132136 logTestBegin (testMethodName );
@@ -149,6 +153,7 @@ void cacheAddInstallerWls() throws Exception {
149153 */
150154 @ Test
151155 @ Order (4 )
156+ @ Tag ("nightly" )
152157 void createWlsImg () throws Exception {
153158 String testMethodName = new Object () {}.getClass ().getEnclosingMethod ().getName ();
154159 logTestBegin (testMethodName );
@@ -172,6 +177,7 @@ void createWlsImg() throws Exception {
172177 */
173178 @ Test
174179 @ Order (5 )
180+ @ Tag ("gate" )
175181 void cacheAddPatch () throws Exception {
176182 String testMethodName = new Object () {}.getClass ().getEnclosingMethod ().getName ();
177183 logTestBegin (testMethodName );
@@ -195,6 +201,7 @@ void cacheAddPatch() throws Exception {
195201 */
196202 @ Test
197203 @ Order (6 )
204+ @ Tag ("gate" )
198205 void cacheAddTestEntry () throws Exception {
199206 String testMethodName = new Object () {}.getClass ().getEnclosingMethod ().getName ();
200207 logTestBegin (testMethodName );
@@ -217,6 +224,7 @@ void cacheAddTestEntry() throws Exception {
217224 */
218225 @ Test
219226 @ Order (7 )
227+ @ Tag ("gate" )
220228 void cacheDeleteTestEntry () throws Exception {
221229 String testMethodName = new Object () {}.getClass ().getEnclosingMethod ().getName ();
222230 logTestBegin (testMethodName );
@@ -240,6 +248,7 @@ void cacheDeleteTestEntry() throws Exception {
240248 */
241249 @ Test
242250 @ Order (8 )
251+ @ Tag ("gate" )
243252 void createWLSImgUseCache () throws Exception {
244253 String testMethodName = new Object () {}.getClass ().getEnclosingMethod ().getName ();
245254 logTestBegin (testMethodName );
@@ -271,6 +280,7 @@ void createWLSImgUseCache() throws Exception {
271280 */
272281 @ Test
273282 @ Order (9 )
283+ @ Tag ("gate" )
274284 void updateWLSImg () throws Exception {
275285 String testMethodName = new Object () {}.getClass ().getEnclosingMethod ().getName ();
276286 logTestBegin (testMethodName );
@@ -296,6 +306,7 @@ void updateWLSImg() throws Exception {
296306 */
297307 @ Test
298308 @ Order (10 )
309+ @ Tag ("gate" )
299310 void createWlsImgUsingWdt () throws Exception {
300311
301312 String testMethodName = new Object () {}.getClass ().getEnclosingMethod ().getName ();
@@ -360,6 +371,7 @@ void createWlsImgUsingWdt() throws Exception {
360371 */
361372 @ Test
362373 @ Order (11 )
374+ @ Tag ("nightly" )
363375 void createFmwImgFullInternetAccess () throws Exception {
364376 String testMethodName = new Object () {}.getClass ().getEnclosingMethod ().getName ();
365377 logTestBegin (testMethodName );
@@ -395,6 +407,7 @@ void createFmwImgFullInternetAccess() throws Exception {
395407 */
396408 @ Test
397409 @ Order (12 )
410+ @ Tag ("nightly" )
398411 void createFmwImgNonDefault () throws Exception {
399412 String testMethodName = new Object () {}.getClass ().getEnclosingMethod ().getName ();
400413 logTestBegin (testMethodName );
@@ -434,6 +447,7 @@ void createFmwImgNonDefault() throws Exception {
434447 */
435448 @ Test
436449 @ Order (13 )
450+ @ Tag ("nightly" )
437451 void testDCreateJRFDomainImgUsingWDT () throws Exception {
438452 String testMethodName = new Object () {}.getClass ().getEnclosingMethod ().getName ();
439453 logTestBegin (testMethodName );
@@ -499,6 +513,7 @@ void testDCreateJRFDomainImgUsingWDT() throws Exception {
499513 */
500514 @ Test
501515 @ Order (14 )
516+ @ Tag ("nightly" )
502517 void createRestricedJrfDomainImgUsingWdt () throws Exception {
503518 String testMethodName = new Object () {}.getClass ().getEnclosingMethod ().getName ();
504519 logTestBegin (testMethodName );
@@ -551,6 +566,7 @@ void createRestricedJrfDomainImgUsingWdt() throws Exception {
551566 */
552567 @ Test
553568 @ Order (15 )
569+ @ Tag ("nightly" )
554570 void createWlsImgUsingMultiModels () throws Exception {
555571 String testMethodName = new Object () {}.getClass ().getEnclosingMethod ().getName ();
556572 logTestBegin (testMethodName );
@@ -609,6 +625,7 @@ void createWlsImgUsingMultiModels() throws Exception {
609625 */
610626 @ Test
611627 @ Order (16 )
628+ @ Tag ("nightly" )
612629 void createWLSImgWithAdditionalBuildCommands () throws Exception {
613630 String testMethodName = new Object () {}.getClass ().getEnclosingMethod ().getName ();
614631 logTestBegin (testMethodName );
0 commit comments