123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
- <?php
- /**
- * Generated by PHPUnit_SkeletonGenerator on 2012-10-01 at 14:44:09.
- */
- class PluginTest extends PHPUnit_Framework_TestCase
- {
- /**
- * @var Plugin
- */
- 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 Plugin;
- }
- /**
- * Tears down the fixture, for example, closes a network connection.
- * This method is called after a test is executed.
- */
- protected function tearDown()
- {
- }
- /**
- * @covers Plugin::get_info
- * @todo Implement testGet_info().
- */
- public function testGet_info()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers Plugin::get_name
- * @todo Implement testGet_name().
- */
- public function testGet_name()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers Plugin::get_title
- * @todo Implement testGet_title().
- */
- public function testGet_title()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers Plugin::get_comment
- * @todo Implement testGet_comment().
- */
- public function testGet_comment()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers Plugin::get_version
- * @todo Implement testGet_version().
- */
- public function testGet_version()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers Plugin::get_author
- * @todo Implement testGet_author().
- */
- public function testGet_author()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers Plugin::get_css
- * @todo Implement testGet_css().
- */
- public function testGet_css()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers Plugin::get_settings_form
- * @todo Implement testGet_settings_form().
- */
- public function testGet_settings_form()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers Plugin::get
- * @todo Implement testGet().
- */
- public function testGet()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers Plugin::get_settings
- * @todo Implement testGet_settings().
- */
- public function testGet_settings()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers Plugin::get_lang_plugin_exists
- * @todo Implement testGet_lang_plugin_exists().
- */
- public function testGet_lang_plugin_exists()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers Plugin::get_lang
- * @todo Implement testGet_lang().
- */
- public function testGet_lang()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers Plugin::course_install
- * @todo Implement testCourse_install().
- */
- public function testCourse_install()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers Plugin::install_course_fields
- * @todo Implement testInstall_course_fields().
- */
- public function testInstall_course_fields()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers Plugin::uninstall_course_fields
- * @todo Implement testUninstall_course_fields().
- */
- public function testUninstall_course_fields()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers Plugin::install_course_fields_in_all_courses
- * @todo Implement testInstall_course_fields_in_all_courses().
- */
- public function testInstall_course_fields_in_all_courses()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers Plugin::uninstall_course_fields_in_all_courses
- * @todo Implement testUninstall_course_fields_in_all_courses().
- */
- public function testUninstall_course_fields_in_all_courses()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- }
|