Minor - Remove deprecated Page class in PHPUnit

1.10.x
Yannick Warnier 10 years ago
parent 623849bd5c
commit 7283428bf9
  1. 184
      tests/phpunit/classes/PageTest.class.php

@ -1,184 +0,0 @@
<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2012-10-01 at 14:44:09.
*/
class PageTest extends PHPUnit_Framework_TestCase
{
/**
* @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 Page::create
* @todo Implement testCreate().
*/
public function testCreate()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Page::header
* @todo Implement testHeader().
*/
public function testHeader()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Page::title
* @todo Implement testTitle().
*/
public function testTitle()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Page::breadcrumbs
* @todo Implement testBreadcrumbs().
*/
public function testBreadcrumbs()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Page::help
* @todo Implement testHelp().
*/
public function testHelp()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Page::message
* @todo Implement testMessage().
*/
public function testMessage()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Page::warning
* @todo Implement testWarning().
*/
public function testWarning()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Page::error
* @todo Implement testError().
*/
public function testError()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Page::content
* @todo Implement testContent().
*/
public function testContent()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Page::__toString
* @todo Implement test__toString().
*/
public function test__toString()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Page::display
* @todo Implement testDisplay().
*/
public function testDisplay()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Page::display_header
* @todo Implement testDisplay_header().
*/
public function testDisplay_header()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Page::display_footer
* @todo Implement testDisplay_footer().
*/
public function testDisplay_footer()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
}
Loading…
Cancel
Save