This repository has been archived by the owner on Jan 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1229 from mariansollmann/issue-1229
Remove ApplicationName
- Loading branch information
Showing
2 changed files
with
0 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,6 @@ public static function setUpBeforeClass() { | |
CM_Config::get()->CM_Site_Abstract->urlCdn = 'http://www.cdn.com'; | ||
CM_Config::get()->CM_Site_Abstract->name = 'Foo'; | ||
CM_Config::get()->CM_Site_Abstract->emailAddress = '[email protected]'; | ||
CM_Config::get()->CM_Site_Abstract->applicationName = 'Bar'; | ||
} | ||
|
||
public function testGetAll() { | ||
|
@@ -28,12 +27,6 @@ public function testGetName() { | |
$this->assertEquals('Foo', $site->getName()); | ||
} | ||
|
||
public function testGetApplicationName() { | ||
/** @var CM_Site_Abstract $site */ | ||
$site = $this->getMockForAbstractClass('CM_Site_Abstract'); | ||
$this->assertEquals('Bar', $site->getApplicationName()); | ||
} | ||
|
||
public function testGetUrl() { | ||
/** @var CM_Site_Abstract $site */ | ||
$site = $this->getMockForAbstractClass('CM_Site_Abstract'); | ||
|