MDL-32426 phpunit: Fixed up phpdocs for generator changes

This commit is contained in:
Sam Hemelryk
2012-04-16 11:52:56 +12:00
parent e3a660a2e7
commit 2a535174c0
+14 -2
View File
@@ -408,7 +408,13 @@ EOD;
/**
* Create a test group for the specified course
*
* @param array|stdClass $recrd
* $record should be either an array or a stdClass containing infomation about the group to create.
* At the very least it needs to contain courseid.
* Default values are added for name, description, and descriptionformat if they are not present.
*
* This function calls {@see groups_create_group()} to create the group within the database.
*
* @param array|stdClass $record
* @return stdClass group record
*/
public function create_group($record) {
@@ -445,7 +451,13 @@ EOD;
/**
* Create a test grouping for the specified course
*
* @param array|stdClass $recrd
* $record should be either an array or a stdClass containing infomation about the grouping to create.
* At the very least it needs to contain courseid.
* Default values are added for name, description, and descriptionformat if they are not present.
*
* This function calls {@see groups_create_grouping()} to create the grouping within the database.
*
* @param array|stdClass $record
* @return stdClass grouping record
*/
public function create_grouping($record) {