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 assignfeedback_file.
-
 
19
 *
-
 
20
 * @package    assignfeedback_file
-
 
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 assignfeedback_file\privacy;
-
 
25
 
-
 
26
defined('MOODLE_INTERNAL') || die();
-
 
27
 
-
 
28
global $CFG;
-
 
29
require_once($CFG->dirroot . '/mod/assign/locallib.php');
-
 
30
require_once($CFG->dirroot . '/mod/assign/tests/privacy/provider_test.php');
17
namespace assignfeedback_file\privacy;
Línea 31... Línea 18...
31
 
18
 
32
use mod_assign\privacy\assign_plugin_request_data;
19
use mod_assign\privacy\assign_plugin_request_data;
33
 
20
 
34
/**
21
/**
35
 * Unit tests for mod/assign/feedback/file/classes/privacy/
22
 * Unit tests for mod/assign/feedback/file/classes/privacy/provider.
-
 
23
 *
-
 
24
 * @copyright  2018 Adrian Greeve <adrian@moodle.com>
36
 *
25
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
37
 * @copyright  2018 Adrian Greeve <adrian@moodle.com>
26
 * @package    assignfeedback_file
-
 
27
 * @covers     \assignfeedback_file\privacy\provider
-
 
28
 */
-
 
29
final class provider_test extends \mod_assign\tests\provider_testcase {
-
 
30
    #[\Override]
-
 
31
    public static function setUpBeforeClass(): void {
-
 
32
        global $CFG;
-
 
33
 
Línea 38... Línea 34...
38
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
34
        parent::setUpBeforeClass();
39
 */
35
        require_once($CFG->dirroot . '/mod/assign/locallib.php');
40
class provider_test extends \mod_assign\privacy\provider_test {
36
    }
41
 
37