1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- /**
- * Generated by PHPUnit_SkeletonGenerator on 2014-12-05 at 12:28:24.
- */
- class ApplicationSettingsTest extends PHPUnit_Framework_TestCase {
- /**
- * Sets up the fixture, for example, opens a network connection.
- * This method is called before a test is executed.
- */
- protected function setUp() {
- }
- /**
- * Tears down the fixture, for example, closes a network connection.
- * This method is called after a test is executed.
- */
- protected function tearDown() {
-
- }
- /**
- * @covers ApplicationSettings::ReloadSettings
- * @todo Implement testReloadSettings().
- */
- public function testReloadSettings() {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ApplicationSettings::GetSetting
- * @todo Implement testGetSetting().
- */
- public function testGetSetting() {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers ApplicationSettings::RegisterDefaultSetting
- * @todo Implement testRegisterDefaultSetting().
- */
- public function testRegisterDefaultSetting() {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- }
|