Skip to content

Commit

Permalink
CRM-19447: Added doc-blocks to unit test methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
twomice committed Dec 14, 2016
1 parent 25b9726 commit 96e30da
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/phpunit/api/v3/ActivityTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -639,6 +639,9 @@ public function testActivityGetTargetFilter() {
}
}

/**
* Test that activity.get api works when filtering on subject.
*/
public function testActivityGetSubjectFilter() {
$subject = 'test activity ' . __FUNCTION__;
$params = $this->_params;
Expand All @@ -651,6 +654,9 @@ public function testActivityGetSubjectFilter() {
$this->assertEquals($activityget['subject'], $subject);
}

/**
* Test that activity.get api works when filtering on details.
*/
public function testActivityGetDetailsFilter() {
$details = 'test activity ' . __FUNCTION__;
$params = $this->_params;
Expand Down

0 comments on commit 96e30da

Please sign in to comment.