We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c5a47f commit f02b791Copy full SHA for f02b791
tests/WorkLogTest.php
@@ -91,4 +91,20 @@ public function testGetWorkLogById($workLogid)
91
$this->assertTrue(false, 'testGetWorkLogById Failed : '.$e->getMessage());
92
}
93
94
+
95
+ /**
96
+ * @depends testUpdateWorkLogInIssue
97
+ */
98
+ public function testDeleteWorkLogById($workLogid)
99
+ {
100
+ try {
101
+ $issueService = new IssueService();
102
103
+ $worklog = $issueService->deleteWorklog($this->issueKey, $workLogid);
104
105
+ Dumper::dump($worklog);
106
+ } catch (JiraException $e) {
107
+ $this->assertTrue(false, 'testDeleteWorkLogById Failed : '.$e->getMessage());
108
+ }
109
110
0 commit comments