ApplicationSettingsTest.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. /**
  3. * Generated by PHPUnit_SkeletonGenerator on 2014-12-05 at 12:28:24.
  4. */
  5. class ApplicationSettingsTest extends PHPUnit_Framework_TestCase {
  6. /**
  7. * Sets up the fixture, for example, opens a network connection.
  8. * This method is called before a test is executed.
  9. */
  10. protected function setUp() {
  11. }
  12. /**
  13. * Tears down the fixture, for example, closes a network connection.
  14. * This method is called after a test is executed.
  15. */
  16. protected function tearDown() {
  17. }
  18. /**
  19. * @covers ApplicationSettings::ReloadSettings
  20. * @todo Implement testReloadSettings().
  21. */
  22. public function testReloadSettings() {
  23. // Remove the following lines when you implement this test.
  24. $this->markTestIncomplete(
  25. 'This test has not been implemented yet.'
  26. );
  27. }
  28. /**
  29. * @covers ApplicationSettings::GetSetting
  30. * @todo Implement testGetSetting().
  31. */
  32. public function testGetSetting() {
  33. // Remove the following lines when you implement this test.
  34. $this->markTestIncomplete(
  35. 'This test has not been implemented yet.'
  36. );
  37. }
  38. /**
  39. * @covers ApplicationSettings::RegisterDefaultSetting
  40. * @todo Implement testRegisterDefaultSetting().
  41. */
  42. public function testRegisterDefaultSetting() {
  43. // Remove the following lines when you implement this test.
  44. $this->markTestIncomplete(
  45. 'This test has not been implemented yet.'
  46. );
  47. }
  48. }