| Total Complexity | 6 |
| Total Lines | 61 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class UserManagementConfigExtensionTest extends FunctionalTest |
||
| 14 | { |
||
| 15 | |||
| 16 | private $siteconfig; |
||
| 17 | |||
| 18 | protected function setUp() |
||
| 19 | { |
||
| 20 | parent::setUp(); |
||
| 21 | |||
| 22 | $this->siteconfig = SiteConfig::create(); |
||
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Login url test |
||
| 27 | */ |
||
| 28 | public function testgetLoginUrlID() |
||
| 33 | } |
||
| 34 | |||
| 35 | |||
| 36 | /** |
||
| 37 | * Login call back url test |
||
| 38 | */ |
||
| 39 | public function testgetLoginCallBackUrlID() |
||
| 40 | { |
||
| 41 | |||
| 42 | $logincallbackurlid = $this->siteconfig->getLoginCallBackUrlID(); |
||
| 43 | $this->assertNotNull($logincallbackurlid, "login call back url exists"); |
||
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * Lost password url test |
||
| 48 | */ |
||
| 49 | public function testgetLostPasswordUrlID() |
||
| 50 | { |
||
| 51 | |||
| 52 | $lostpasswordurlid = $this->siteconfig->getLostPasswordUrlID(); |
||
| 53 | $this->assertNotNull($lostpasswordurlid, "lost password url exists"); |
||
| 54 | } |
||
| 55 | |||
| 56 | /** |
||
| 57 | * Customer group id test |
||
| 58 | */ |
||
| 59 | public function testgetCustomerGroupID() |
||
| 64 | } |
||
| 65 | |||
| 66 | /** |
||
| 67 | * Export fields test |
||
| 68 | */ |
||
| 69 | public function testgetExportFieldNames() |
||
| 76 |