ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilServicesPasswordSuite.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2014 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 require_once 'Services/Utilities/classes/class.ilUtil.php';
5 require_once 'Services/Form/classes/class.ilPropertyFormGUI.php';
6 
13 {
17  public static function suite()
18  {
19  // Set timezone to prevent notices
20  date_default_timezone_set('Europe/Berlin');
21 
22  $suite = new self();
23 
24  require_once dirname(__FILE__) . '/encoders/ilMd5PasswordEncoderTest.php';
25  $suite->addTestSuite('ilMd5PasswordEncoderTest');
26 
27  require_once dirname(__FILE__) . '/encoders/ilBcryptPasswordEncoderTest.php';
28  $suite->addTestSuite('ilBcryptPasswordEncoderTest');
29 
30  return $suite;
31  }
32 }