Alternc  latest
Alternc logiel libre pour l'hébergement
m_cronTest.php
Go to the documentation of this file.
1 <?php
2 /**
3  * Generated by PHPUnit_SkeletonGenerator 1.2.1 on 2014-03-13 at 15:55:58.
4  */
5 use PHPUnit\Framework\TestCase;
6 
7 class m_cronTest extends TestCase
8 {
9  /**
10  * @var m_cron
11  */
12  protected $object;
13 
14  /**
15  * Sets up the fixture, for example, opens a network connection.
16  * This method is called before a test is executed.
17  */
18  protected function setUp()
19  {
20  parent::setUp();
21  $this->object = new m_cron;
22  }
23 
24  /**
25  * Tears down the fixture, for example, closes a network connection.
26  * This method is called after a test is executed.
27  */
28  protected function tearDown()
29  {
30  parent::tearDown();
31  }
32 
33  /**
34  * @covers m_cron::schedule
35  * @todo Implement testSchedule().
36  */
37  public function testSchedule()
38  {
39  // Remove the following lines when you implement this test.
40  $this->markTestIncomplete(
41  'This test has not been implemented yet.'
42  );
43  }
44 
45  /**
46  * @covers m_cron::lst_cron
47  * @todo Implement testLst_cron().
48  */
49  public function testLst_cron()
50  {
51  // Remove the following lines when you implement this test.
52  $this->markTestIncomplete(
53  'This test has not been implemented yet.'
54  );
55  }
56 
57  /**
58  * @covers m_cron::hook_menu
59  * @todo Implement testHook_menu().
60  */
61  public function testHook_menu()
62  {
63  // Remove the following lines when you implement this test.
64  $this->markTestIncomplete(
65  'This test has not been implemented yet.'
66  );
67  }
68 
69  /**
70  * @covers m_cron::update
71  * @todo Implement testUpdate().
72  */
73  public function testUpdate()
74  {
75  // Remove the following lines when you implement this test.
76  $this->markTestIncomplete(
77  'This test has not been implemented yet.'
78  );
79  }
80 
81  /**
82  * @covers m_cron::delete_one
83  * @todo Implement testDelete_one().
84  */
85  public function testDelete_one()
86  {
87  // Remove the following lines when you implement this test.
88  $this->markTestIncomplete(
89  'This test has not been implemented yet.'
90  );
91  }
92 
93  /**
94  * @covers m_cron::valid_schedule
95  * @todo Implement testValid_schedule().
96  */
97  public function testValid_schedule()
98  {
99  // Remove the following lines when you implement this test.
100  $this->markTestIncomplete(
101  'This test has not been implemented yet.'
102  );
103  }
104 
105  /**
106  * @covers m_cron::hook_quota_get
107  * @todo Implement testHook_quota_get().
108  */
109  public function testHook_quota_get()
110  {
111  // Remove the following lines when you implement this test.
112  $this->markTestIncomplete(
113  'This test has not been implemented yet.'
114  );
115  }
116 }
This class manage web-cron tasks.
Definition: m_cron.php:26
testHook_menu()
@covers m_cron::hook_menu
Definition: m_cronTest.php:61
testValid_schedule()
@covers m_cron::valid_schedule
Definition: m_cronTest.php:97
testDelete_one()
@covers m_cron::delete_one
Definition: m_cronTest.php:85
tearDown()
Tears down the fixture, for example, closes a network connection.
Definition: m_cronTest.php:28
testUpdate()
@covers m_cron::update
Definition: m_cronTest.php:73
testHook_quota_get()
@covers m_cron::hook_quota_get
Definition: m_cronTest.php:109
testSchedule()
@covers m_cron::schedule
Definition: m_cronTest.php:37
testLst_cron()
@covers m_cron::lst_cron
Definition: m_cronTest.php:49
setUp()
Sets up the fixture, for example, opens a network connection.
Definition: m_cronTest.php:18