@@ -109,7 +109,7 @@ private static PrintWriter getTestMethodWriter(TestInfo testInfo) throws IOExcep
109
109
@ Order (1 )
110
110
@ Tag ("gate" )
111
111
@ Test
112
- public void test1CreateDomainNoDomainHome (TestInfo testInfo ) throws Exception {
112
+ public void test01CreateDomainNoDomainHome (TestInfo testInfo ) throws Exception {
113
113
String cmd = createDomainScript + " -oracle_home " + mwhome_12213 ;
114
114
try (PrintWriter out = getTestMethodWriter (testInfo )) {
115
115
CommandResult result = Runner .run (cmd , getTestMethodEnvironment (testInfo ), out );
@@ -126,7 +126,7 @@ public void test1CreateDomainNoDomainHome(TestInfo testInfo) throws Exception {
126
126
@ Order (2 )
127
127
@ Tag ("gate" )
128
128
@ Test
129
- public void test2CreateDomainNoDomainHome (TestInfo testInfo ) throws Exception {
129
+ public void test02CreateDomainNoDomainHome (TestInfo testInfo ) throws Exception {
130
130
String cmd = createDomainScript + " -oracle_home " + mwhome_12213 + " -domain_type WLS" ;
131
131
try (PrintWriter out = getTestMethodWriter (testInfo )) {
132
132
CommandResult result = Runner .run (cmd , getTestMethodEnvironment (testInfo ), out );
@@ -144,7 +144,7 @@ public void test2CreateDomainNoDomainHome(TestInfo testInfo) throws Exception {
144
144
@ Order (3 )
145
145
@ Tag ("gate" )
146
146
@ Test
147
- public void test3CreateDomainNoModelfile (TestInfo testInfo ) throws Exception {
147
+ public void test03CreateDomainNoModelfile (TestInfo testInfo ) throws Exception {
148
148
String cmd = createDomainScript + " -oracle_home " + mwhome_12213 + " -domain_parent " + domainParentDir ;
149
149
try (PrintWriter out = getTestMethodWriter (testInfo )) {
150
150
CommandResult result = Runner .run (cmd , getTestMethodEnvironment (testInfo ), out );
@@ -162,7 +162,7 @@ public void test3CreateDomainNoModelfile(TestInfo testInfo) throws Exception {
162
162
@ Order (4 )
163
163
@ Tag ("gate" )
164
164
@ Test
165
- public void test4CreateDomainNoArchivefile (TestInfo testInfo ) throws Exception {
165
+ public void test04CreateDomainNoArchivefile (TestInfo testInfo ) throws Exception {
166
166
String cmd = createDomainScript + " -oracle_home " + mwhome_12213 + " -domain_parent " + domainParentDir +
167
167
" -model_file " + getSampleModelFile ("-constant" ) ;
168
168
try (PrintWriter out = getTestMethodWriter (testInfo )) {
@@ -181,7 +181,7 @@ public void test4CreateDomainNoArchivefile(TestInfo testInfo) throws Exception {
181
181
@ Order (5 )
182
182
@ Tag ("gate" )
183
183
@ Test
184
- public void test5CreateDomain (TestInfo testInfo ) throws Exception {
184
+ public void test05CreateDomain (TestInfo testInfo ) throws Exception {
185
185
String cmd = createDomainScript + " -oracle_home " + mwhome_12213 + " -domain_parent " + domainParentDir +
186
186
" -model_file " + getSampleModelFile ("-constant" ) +
187
187
" -archive_file " + getSampleArchiveFile ();
@@ -202,7 +202,7 @@ public void test5CreateDomain(TestInfo testInfo) throws Exception {
202
202
@ Order (6 )
203
203
@ Tag ("gate" )
204
204
@ Test
205
- public void test6CreateDomainDifferentDomainName (TestInfo testInfo ) throws Exception {
205
+ public void test06CreateDomainDifferentDomainName (TestInfo testInfo ) throws Exception {
206
206
String cmd = createDomainScript
207
207
+ " -oracle_home " + mwhome_12213
208
208
+ " -domain_home " + domainParentDir + FS + "domain2"
@@ -222,7 +222,7 @@ public void test6CreateDomainDifferentDomainName(TestInfo testInfo) throws Excep
222
222
@ Order (7 )
223
223
@ Tag ("gate" )
224
224
@ Test
225
- public void test7CreateDomainWLSType (TestInfo testInfo ) throws Exception {
225
+ public void test07CreateDomainWLSType (TestInfo testInfo ) throws Exception {
226
226
String cmd = createDomainScript + " -oracle_home " + mwhome_12213 + " -domain_home " +
227
227
domainParentDir + FS + "domain2 -model_file " +
228
228
getSampleModelFile ("-constant" ) + " -archive_file " + getSampleArchiveFile () +
@@ -242,7 +242,7 @@ public void test7CreateDomainWLSType(TestInfo testInfo) throws Exception {
242
242
@ Order (8 )
243
243
@ Tag ("gate" )
244
244
@ Test
245
- public void test8CreateDomainNoVariableFile (TestInfo testInfo ) throws Exception {
245
+ public void test08CreateDomainNoVariableFile (TestInfo testInfo ) throws Exception {
246
246
String cmd = createDomainScript + " -oracle_home " + mwhome_12213 + " -domain_parent " + domainParentDir +
247
247
" -model_file " + getSampleModelFile ("1" ) +
248
248
" -archive_file " + getSampleArchiveFile () ;
@@ -262,7 +262,7 @@ public void test8CreateDomainNoVariableFile(TestInfo testInfo) throws Exception
262
262
@ Order (9 )
263
263
@ Tag ("gate" )
264
264
@ Test
265
- public void test9CreateDomainWithVariableFile (TestInfo testInfo ) throws Exception {
265
+ public void test09CreateDomainWithVariableFile (TestInfo testInfo ) throws Exception {
266
266
String cmd = createDomainScript + " -oracle_home " + mwhome_12213 + " -domain_home " +
267
267
domainParentDir + FS + "domain2 -model_file " +
268
268
getSampleModelFile ("1" ) + " -archive_file " + getSampleArchiveFile () +
0 commit comments