Skip to content

Commit 0279c45

Browse files
committed
system-test name methods with two digits for better workspace output folder sorting
1 parent ecb6910 commit 0279c45

File tree

1 file changed

+9
-9
lines changed
  • system-test/src/test/java/oracle/weblogic/deploy/integration

1 file changed

+9
-9
lines changed

system-test/src/test/java/oracle/weblogic/deploy/integration/ITWdt.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ private static PrintWriter getTestMethodWriter(TestInfo testInfo) throws IOExcep
109109
@Order(1)
110110
@Tag("gate")
111111
@Test
112-
public void test1CreateDomainNoDomainHome(TestInfo testInfo) throws Exception {
112+
public void test01CreateDomainNoDomainHome(TestInfo testInfo) throws Exception {
113113
String cmd = createDomainScript + " -oracle_home " + mwhome_12213;
114114
try (PrintWriter out = getTestMethodWriter(testInfo)) {
115115
CommandResult result = Runner.run(cmd, getTestMethodEnvironment(testInfo), out);
@@ -126,7 +126,7 @@ public void test1CreateDomainNoDomainHome(TestInfo testInfo) throws Exception {
126126
@Order(2)
127127
@Tag("gate")
128128
@Test
129-
public void test2CreateDomainNoDomainHome(TestInfo testInfo) throws Exception {
129+
public void test02CreateDomainNoDomainHome(TestInfo testInfo) throws Exception {
130130
String cmd = createDomainScript + " -oracle_home " + mwhome_12213 + " -domain_type WLS";
131131
try (PrintWriter out = getTestMethodWriter(testInfo)) {
132132
CommandResult result = Runner.run(cmd, getTestMethodEnvironment(testInfo), out);
@@ -144,7 +144,7 @@ public void test2CreateDomainNoDomainHome(TestInfo testInfo) throws Exception {
144144
@Order(3)
145145
@Tag("gate")
146146
@Test
147-
public void test3CreateDomainNoModelfile(TestInfo testInfo) throws Exception {
147+
public void test03CreateDomainNoModelfile(TestInfo testInfo) throws Exception {
148148
String cmd = createDomainScript + " -oracle_home " + mwhome_12213 + " -domain_parent " + domainParentDir;
149149
try (PrintWriter out = getTestMethodWriter(testInfo)) {
150150
CommandResult result = Runner.run(cmd, getTestMethodEnvironment(testInfo), out);
@@ -162,7 +162,7 @@ public void test3CreateDomainNoModelfile(TestInfo testInfo) throws Exception {
162162
@Order(4)
163163
@Tag("gate")
164164
@Test
165-
public void test4CreateDomainNoArchivefile(TestInfo testInfo) throws Exception {
165+
public void test04CreateDomainNoArchivefile(TestInfo testInfo) throws Exception {
166166
String cmd = createDomainScript + " -oracle_home " + mwhome_12213 + " -domain_parent " + domainParentDir +
167167
" -model_file " + getSampleModelFile("-constant") ;
168168
try (PrintWriter out = getTestMethodWriter(testInfo)) {
@@ -181,7 +181,7 @@ public void test4CreateDomainNoArchivefile(TestInfo testInfo) throws Exception {
181181
@Order(5)
182182
@Tag("gate")
183183
@Test
184-
public void test5CreateDomain(TestInfo testInfo) throws Exception {
184+
public void test05CreateDomain(TestInfo testInfo) throws Exception {
185185
String cmd = createDomainScript + " -oracle_home " + mwhome_12213 + " -domain_parent " + domainParentDir +
186186
" -model_file " + getSampleModelFile("-constant") +
187187
" -archive_file " + getSampleArchiveFile();
@@ -202,7 +202,7 @@ public void test5CreateDomain(TestInfo testInfo) throws Exception {
202202
@Order(6)
203203
@Tag("gate")
204204
@Test
205-
public void test6CreateDomainDifferentDomainName(TestInfo testInfo) throws Exception {
205+
public void test06CreateDomainDifferentDomainName(TestInfo testInfo) throws Exception {
206206
String cmd = createDomainScript
207207
+ " -oracle_home " + mwhome_12213
208208
+ " -domain_home " + domainParentDir + FS + "domain2"
@@ -222,7 +222,7 @@ public void test6CreateDomainDifferentDomainName(TestInfo testInfo) throws Excep
222222
@Order(7)
223223
@Tag("gate")
224224
@Test
225-
public void test7CreateDomainWLSType(TestInfo testInfo) throws Exception {
225+
public void test07CreateDomainWLSType(TestInfo testInfo) throws Exception {
226226
String cmd = createDomainScript + " -oracle_home " + mwhome_12213 + " -domain_home " +
227227
domainParentDir + FS + "domain2 -model_file " +
228228
getSampleModelFile("-constant") + " -archive_file " + getSampleArchiveFile() +
@@ -242,7 +242,7 @@ public void test7CreateDomainWLSType(TestInfo testInfo) throws Exception {
242242
@Order(8)
243243
@Tag("gate")
244244
@Test
245-
public void test8CreateDomainNoVariableFile(TestInfo testInfo) throws Exception {
245+
public void test08CreateDomainNoVariableFile(TestInfo testInfo) throws Exception {
246246
String cmd = createDomainScript + " -oracle_home " + mwhome_12213 + " -domain_parent " + domainParentDir +
247247
" -model_file " + getSampleModelFile("1") +
248248
" -archive_file " + getSampleArchiveFile() ;
@@ -262,7 +262,7 @@ public void test8CreateDomainNoVariableFile(TestInfo testInfo) throws Exception
262262
@Order(9)
263263
@Tag("gate")
264264
@Test
265-
public void test9CreateDomainWithVariableFile(TestInfo testInfo) throws Exception {
265+
public void test09CreateDomainWithVariableFile(TestInfo testInfo) throws Exception {
266266
String cmd = createDomainScript + " -oracle_home " + mwhome_12213 + " -domain_home " +
267267
domainParentDir + FS + "domain2 -model_file " +
268268
getSampleModelFile("1") + " -archive_file " + getSampleArchiveFile() +

0 commit comments

Comments
 (0)