123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532 |
- <?php
- /**
- * Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:34:57.
- */
- class SessionManagerTest extends PHPUnit_Framework_TestCase
- {
- /**
- * @var SessionManager
- */
- 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 SessionManager;
- }
- /**
- * Tears down the fixture, for example, closes a network connection.
- * This method is called after a test is executed.
- */
- protected function tearDown()
- {
- }
- /**
- * @covers SessionManager::fetch
- * @todo Implement testFetch().
- */
- public function testFetch()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::create_session
- * @todo Implement testCreate_session().
- */
- public function testCreate_session()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::session_name_exists
- * @todo Implement testSession_name_exists().
- */
- public function testSession_name_exists()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::get_count_admin
- * @todo Implement testGet_count_admin().
- */
- public function testGet_count_admin()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::get_sessions_admin
- * @todo Implement testGet_sessions_admin().
- */
- public function testGet_sessions_admin()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::generateNextSessionName
- * @todo Implement testGenerate_nice_next_session_name().
- */
- public function testGenerateNextSessionName()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::edit_session
- * @todo Implement testEdit_session().
- */
- public function testEdit_session()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::delete_session
- * @todo Implement testDelete_session().
- */
- public function testDelete_session()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::suscribe_users_to_session
- * @todo Implement testSuscribe_users_to_session().
- */
- public function testSuscribe_users_to_session()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::subscribe_users_to_session_course
- * @todo Implement testSubscribe_users_to_session_course().
- */
- public function testSubscribe_users_to_session_course()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::unsubscribe_user_from_session
- * @todo Implement testUnsubscribe_user_from_session().
- */
- public function testUnsubscribe_user_from_session()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::add_courses_to_session
- * @todo Implement testAdd_courses_to_session().
- */
- public function testAdd_courses_to_session()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::unsubscribe_course_from_session
- * @todo Implement testUnsubscribe_course_from_session().
- */
- public function testUnsubscribe_course_from_session()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::create_session_extra_field
- * @todo Implement testCreate_session_extra_field().
- */
- public function testCreate_session_extra_field()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::update_session_extra_field_value
- * @todo Implement testUpdate_session_extra_field_value().
- */
- public function testUpdate_session_extra_field_value()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::relation_session_course_exist
- * @todo Implement testRelation_session_course_exist().
- */
- public function testRelation_session_course_exist()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::get_session_by_name
- * @todo Implement testGet_session_by_name().
- */
- public function testGet_session_by_name()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::create_category_session
- * @todo Implement testCreate_category_session().
- */
- public function testCreate_category_session()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::edit_category_session
- * @todo Implement testEdit_category_session().
- */
- public function testEdit_category_session()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::delete_session_category
- * @todo Implement testDelete_session_category().
- */
- public function testDelete_session_category()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::get_sessions_list
- * @todo Implement testGet_sessions_list().
- */
- public function testGet_sessions_list()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::get_session_category
- * @todo Implement testGet_session_category().
- */
- public function testGet_session_category()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::get_all_session_category
- * @todo Implement testGet_all_session_category().
- */
- public function testGet_all_session_category()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::set_coach_to_course_session
- * @todo Implement testSet_coach_to_course_session().
- */
- public function testSet_coach_to_course_session()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::suscribe_sessions_to_hr_manager
- * @todo Implement testSuscribe_sessions_to_hr_manager().
- */
- public function testSuscribe_sessions_to_hr_manager()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::get_sessions_followed_by_drh
- * @todo Implement testGet_sessions_followed_by_drh().
- */
- public function testGet_sessions_followed_by_drh()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::get_course_list_by_session_id
- * @todo Implement testGet_course_list_by_session_id().
- */
- public function testGet_course_list_by_session_id()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::get_session_id_from_original_id
- * @todo Implement testGet_session_id_from_original_id().
- */
- public function testGet_session_id_from_original_id()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::get_users_by_session
- * @todo Implement testGet_users_by_session().
- */
- public function testGet_users_by_session()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::get_sessions_by_general_coach
- * @todo Implement testGet_sessions_by_general_coach().
- */
- public function testGet_sessions_by_general_coach()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::get_sessions_by_coach
- * @todo Implement testGet_sessions_by_coach().
- */
- public function testGet_sessions_by_coach()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::get_user_status_in_course_session
- * @todo Implement testGet_user_status_in_course_session().
- */
- public function testGet_user_status_in_course_session()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::get_user_status_in_session
- * @todo Implement testGet_user_status_in_session().
- */
- public function testGet_user_status_in_session()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::get_all_sessions_by_promotion
- * @todo Implement testGet_all_sessions_by_promotion().
- */
- public function testGet_all_sessions_by_promotion()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::suscribe_sessions_to_promotion
- * @todo Implement testSuscribe_sessions_to_promotion().
- */
- public function testSuscribe_sessions_to_promotion()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::set_session_status
- * @todo Implement testSet_session_status().
- */
- public function testSet_session_status()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::copy
- * @todo Implement testCopy_session().
- */
- public function testCopy()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::user_is_general_coach
- * @todo Implement testUser_is_general_coach().
- */
- public function testUser_is_general_coach()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::count_sessions
- * @todo Implement testCount_sessions().
- */
- public function testCount_sessions()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::protect_session_edit
- * @todo Implement testProtect_session_edit().
- */
- public function testProtect_session_edit()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::get_session_by_course
- * @todo Implement testGet_session_by_course().
- */
- public function testGet_session_by_course()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SessionManager::get_sessions_by_user
- * @todo Implement testGet_sessions_by_user().
- */
- public function testGet_sessions_by_user()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- }
|