Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
PageTest | n/a |
0 / 0 |
|
100.00% |
28 / 28 |
28 | n/a |
0 / 0 |
||
setUp | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
tearDown | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testSingleton | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testAddJavaScript | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testIncludeJavaScript | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testAddCSS | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testIncludeCss | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testRedirect | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testGetUri | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testPhpSelf | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testOnlyForLogged | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testGetRequestValues | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testIsPosted | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testSanitizeAsType | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testGetRequestValue | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testGetGetValue | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testGetPostValue | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testIsFormPosted | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testKeepRequestValue | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testKeepRequestValues | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testUnKeepRequestValue | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testUnKeepRequestValues | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testGetLinkParametersToKeep | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testSetupWebPage | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testSetOutputFormat | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testGetOutputFormat | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testTakeStatusMessages | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
||||
testArrayToUrlParams | |
100.00% |
1 / 1 |
1 | n/a |
0 / 0 |
<?php | |
namespace Test\Ease; | |
use Ease\Page; | |
/** | |
* Generated by PHPUnit_SkeletonGenerator on 2016-01-17 at 23:58:37. | |
*/ | |
class PageTest extends ContainerTest | |
{ | |
/** | |
* @var Page | |
*/ | |
protected $object; | |
/** | |
* Sets up the fixture, for example, opens a network connection. | |
* This method is called before a test is executed. | |
*/ | |
protected function setUp() | |
{ | |
$this->object = new Page(); | |
} | |
/** | |
* Tears down the fixture, for example, closes a network connection. | |
* This method is called after a test is executed. | |
*/ | |
protected function tearDown() | |
{ | |
} | |
/** | |
* @covers Ease\Page::singleton | |
* | |
* @todo Implement testSingleton(). | |
*/ | |
public function testSingleton() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::addJavaScript | |
* | |
* @todo Implement testAddJavaScript(). | |
*/ | |
public function testAddJavaScript() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::includeJavaScript | |
* | |
* @todo Implement testIncludeJavaScript(). | |
*/ | |
public function testIncludeJavaScript() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::addCSS | |
* | |
* @todo Implement testAddCSS(). | |
*/ | |
public function testAddCSS() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::includeCss | |
* | |
* @todo Implement testIncludeCss(). | |
*/ | |
public function testIncludeCss() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::redirect | |
* | |
* @todo Implement testRedirect(). | |
*/ | |
public function testRedirect() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::getUri | |
* | |
* @todo Implement testGetUri(). | |
*/ | |
public function testGetUri() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::phpSelf | |
* | |
* @todo Implement testPhpSelf(). | |
*/ | |
public function testPhpSelf() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::onlyForLogged | |
* | |
* @todo Implement testOnlyForLogged(). | |
*/ | |
public function testOnlyForLogged() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::getRequestValues | |
* | |
* @todo Implement testGetRequestValues(). | |
*/ | |
public function testGetRequestValues() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::isPosted | |
* | |
* @todo Implement testIsPosted(). | |
*/ | |
public function testIsPosted() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::sanitizeAsType | |
* | |
* @todo Implement testSanitizeAsType(). | |
*/ | |
public function testSanitizeAsType() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::getRequestValue | |
* | |
* @todo Implement testGetRequestValue(). | |
*/ | |
public function testGetRequestValue() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::getGetValue | |
* | |
* @todo Implement testGetGetValue(). | |
*/ | |
public function testGetGetValue() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::getPostValue | |
* | |
* @todo Implement testGetPostValue(). | |
*/ | |
public function testGetPostValue() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::isFormPosted | |
* | |
* @todo Implement testIsFormPosted(). | |
*/ | |
public function testIsFormPosted() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::keepRequestValue | |
* | |
* @todo Implement testKeepRequestValue(). | |
*/ | |
public function testKeepRequestValue() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::keepRequestValues | |
* | |
* @todo Implement testKeepRequestValues(). | |
*/ | |
public function testKeepRequestValues() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::unKeepRequestValue | |
* | |
* @todo Implement testUnKeepRequestValue(). | |
*/ | |
public function testUnKeepRequestValue() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::unKeepRequestValues | |
* | |
* @todo Implement testUnKeepRequestValues(). | |
*/ | |
public function testUnKeepRequestValues() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::getLinkParametersToKeep | |
* | |
* @todo Implement testGetLinkParametersToKeep(). | |
*/ | |
public function testGetLinkParametersToKeep() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::setupWebPage | |
* | |
* @todo Implement testSetupWebPage(). | |
*/ | |
public function testSetupWebPage() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::setOutputFormat | |
* | |
* @todo Implement testSetOutputFormat(). | |
*/ | |
public function testSetOutputFormat() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::getOutputFormat | |
* | |
* @todo Implement testGetOutputFormat(). | |
*/ | |
public function testGetOutputFormat() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::takeStatusMessages | |
* | |
* @todo Implement testTakeStatusMessages(). | |
*/ | |
public function testTakeStatusMessages() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
/** | |
* @covers Ease\Page::arrayToUrlParams | |
* | |
* @todo Implement testArrayToUrlParams(). | |
*/ | |
public function testArrayToUrlParams() | |
{ | |
// Remove the following lines when you implement this test. | |
$this->markTestIncomplete( | |
'This test has not been implemented yet.' | |
); | |
} | |
} |