This repository has been archived by the owner on Aug 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
16 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,10 +3,15 @@ | |
* @author: KentProjects <[email protected]> | ||
* @license: Copyright KentProjects | ||
* @link: http://kentprojects.com | ||
* | ||
* Class KentProjects_TestBase | ||
* This is a base test class for all KentProjects tests. | ||
*/ | ||
abstract class KentProjects_TestBase extends PHPUnit_Framework_TestCase | ||
{ | ||
/** | ||
* Asserts that a model is equal to another model. | ||
* | ||
* @param Model $expected | ||
* @param Model $actual | ||
* @param string $message | ||
|
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 |
---|---|---|
|
@@ -3,6 +3,9 @@ | |
* @author: KentProjects <[email protected]> | ||
* @license: Copyright KentProjects | ||
* @link: http://kentprojects.com | ||
* | ||
* Class KentProjects_Controller_TestBase | ||
* This is a base test class for all KentProjects tests on controllers. | ||
*/ | ||
abstract class KentProjects_Controller_TestBase extends KentProjects_TestBase | ||
{ | ||
|
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 |
---|---|---|
|
@@ -3,6 +3,9 @@ | |
* @author: KentProjects <[email protected]> | ||
* @license: Copyright KentProjects | ||
* @link: http://kentprojects.com | ||
* | ||
* Class KentProjects_Model_TestBase | ||
* This is a base test class for all KentProjects tests on models. | ||
*/ | ||
abstract class KentProjects_Model_TestBase extends KentProjects_TestBase | ||
{ | ||
|
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 |
---|---|---|
|
@@ -3,6 +3,8 @@ | |
* @author: KentProjects <[email protected]> | ||
* @license: Copyright KentProjects | ||
* @link: http://kentprojects.com | ||
* | ||
* Class Postmark | ||
*/ | ||
class Postmark extends Mail | ||
{ | ||
|