Proyectos de Subversion Moodle

Rev

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

Rev 11 Rev 1441
Línea 13... Línea 13...
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...
16
 
16
 
17
namespace tool_mfa;
-
 
18
use tool_mfa\tool_mfa_trait;
-
 
19
 
-
 
20
defined('MOODLE_INTERNAL') || die();
-
 
Línea 21... Línea 17...
21
require_once(__DIR__ . '/tool_mfa_trait.php');
17
namespace tool_mfa;
22
 
18
 
23
/**
19
/**
24
 * Tests for base factor implementation methods.
20
 * Tests for base factor implementation methods.
25
 *
21
 *
26
 * @package     tool_mfa
22
 * @package     tool_mfa
27
 * @author      Peter Burnett <peterburnett@catalyst-au.net>
23
 * @author      Peter Burnett <peterburnett@catalyst-au.net>
28
 * @copyright   2023 Catalyst IT
24
 * @copyright   2023 Catalyst IT
29
 * @license     http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25
 * @license     http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
Línea 30... Línea 26...
30
 */
26
 */
Línea 31... Línea 27...
31
class object_factor_base_test extends \advanced_testcase {
27
final class object_factor_base_test extends \advanced_testcase {
32
 
28
 
33
    use tool_mfa_trait;
29
    use \tool_mfa\tests\mfa_settings_trait;
34
 
30