Skip to content

Commit 64f2cca

Browse files
committed
URL PATH of Actions - Controller Methods Refactoring
1 parent 50847ec commit 64f2cca

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed

etc/requirements/Requirements.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,15 @@
4141
## F020 show /taskstate/completed
4242

4343
## F021 show /taskstate/trash
44+
45+
## F022 Task Edit
46+
47+
## F023 Task Edit Form -> change Taskstate via DropDown
48+
49+
## F024 Task complete
50+
51+
## F025 Task incomplete
52+
53+
## F026 Task delete
54+
55+
## F027 Task undelete

src/test/java/org/woehlke/simpleworklist/SmokeTests.java

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,4 +161,35 @@ public void testF021ShowTaskstateTrash(){
161161
log.info("testF021ShowTaskstateTrash");
162162
}
163163

164+
@Test
165+
public void testF022TaskEdit(){
166+
log.info("testF022TaskEdit");
167+
}
168+
169+
@Test
170+
public void testF023TaskEditFormChangeTaskstateViaDropDown(){
171+
log.info("testF023TaskEditFormChangeTaskstateViaDropDown");
172+
}
173+
174+
@Test
175+
public void testF024TaskComplete(){
176+
log.info("testF024TaskComplete");
177+
}
178+
179+
@Test
180+
public void testF025TaskIncomplete(){
181+
log.info("testF025TaskIncomplete");
182+
}
183+
184+
@Test
185+
public void testF026TaskDelete(){
186+
log.info("testF026TaskDelete");
187+
}
188+
189+
@Test
190+
public void testF027TaskUndelete(){
191+
log.info("testF027TaskUndelete");
192+
}
193+
194+
164195
}

0 commit comments

Comments
 (0)