UserApiKeyManagerTest.class.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?php
  2. /**
  3. * Generated by PHPUnit_SkeletonGenerator on 2012-10-01 at 14:44:10.
  4. */
  5. class UserApiKeyManagerTest extends PHPUnit_Framework_TestCase
  6. {
  7. /**
  8. * @var UserApiKeyManager
  9. */
  10. protected $object;
  11. /**
  12. * Sets up the fixture, for example, opens a network connection.
  13. * This method is called before a test is executed.
  14. */
  15. protected function setUp()
  16. {
  17. $this->object = new UserApiKeyManager;
  18. }
  19. /**
  20. * Tears down the fixture, for example, closes a network connection.
  21. * This method is called after a test is executed.
  22. */
  23. protected function tearDown()
  24. {
  25. }
  26. /**
  27. * @covers UserApiKeyManager::default_service
  28. * @todo Implement testDefault_service().
  29. */
  30. public function testDefault_service()
  31. {
  32. // Remove the following lines when you implement this test.
  33. $this->markTestIncomplete(
  34. 'This test has not been implemented yet.'
  35. );
  36. }
  37. /**
  38. * @covers UserApiKeyManager::end_of_time
  39. * @todo Implement testEnd_of_time().
  40. */
  41. public function testEnd_of_time()
  42. {
  43. // Remove the following lines when you implement this test.
  44. $this->markTestIncomplete(
  45. 'This test has not been implemented yet.'
  46. );
  47. }
  48. /**
  49. * @covers UserApiKeyManager::get_by_id
  50. * @todo Implement testGet_by_id().
  51. */
  52. public function testGet_by_id()
  53. {
  54. // Remove the following lines when you implement this test.
  55. $this->markTestIncomplete(
  56. 'This test has not been implemented yet.'
  57. );
  58. }
  59. /**
  60. * @covers UserApiKeyManager::create_temp_token
  61. * @todo Implement testCreate_temp_token().
  62. */
  63. public function testCreate_temp_token()
  64. {
  65. // Remove the following lines when you implement this test.
  66. $this->markTestIncomplete(
  67. 'This test has not been implemented yet.'
  68. );
  69. }
  70. /**
  71. * @covers UserApiKeyManager::create_token
  72. * @todo Implement testCreate_token().
  73. */
  74. public function testCreate_token()
  75. {
  76. // Remove the following lines when you implement this test.
  77. $this->markTestIncomplete(
  78. 'This test has not been implemented yet.'
  79. );
  80. }
  81. }