Proyectos de Subversion Moodle

Rev

Rev 11 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 11 Rev 1441
Línea 12... Línea 12...
12
// GNU General Public License for more details.
12
// GNU General Public License for more details.
13
//
13
//
14
// You should have received a copy of the GNU General Public License
14
// You should have received a copy of the GNU General Public License
15
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
15
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
Línea 16... Línea -...
16
 
-
 
17
/**
-
 
18
 * Unit tests for assignsubmission_comments.
-
 
19
 *
-
 
20
 * @package    assignsubmission_comments
-
 
21
 * @copyright  2018 Adrian Greeve <adrian@moodle.com>
-
 
22
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
-
 
23
 */
16
 
Línea 24... Línea -...
24
namespace assignsubmission_comments\privacy;
-
 
25
 
-
 
26
defined('MOODLE_INTERNAL') || die();
-
 
27
 
-
 
28
global $CFG;
-
 
29
require_once($CFG->dirroot . '/mod/assign/tests/privacy/provider_test.php');
17
namespace assignsubmission_comments\privacy;
Línea 30... Línea 18...
30
 
18
 
31
use mod_assign\privacy\useridlist;
19
use mod_assign\privacy\useridlist;
32
 
20
 
-
 
21
/**
33
/**
22
 * Unit tests for mod/assign/submission/comments/classes/privacy/
34
 * Unit tests for mod/assign/submission/comments/classes/privacy/
23
 *
-
 
24
 * @package    assignsubmission_comments
35
 *
25
 * @copyright  2018 Adrian Greeve <adrian@moodle.com>
36
 * @copyright  2018 Adrian Greeve <adrian@moodle.com>
26
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
Línea 37... Línea 27...
37
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27
 * @covers \assignsubmission_comments\privacy\provider
38
 */
28
 */
39
class provider_test extends \mod_assign\privacy\provider_test {
29
final class provider_test extends \mod_assign\tests\provider_testcase {
40
 
30