| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace App\Test\TestCase\Model\Table;
- use App\Model\Table\ArticlesTable;
- use Cake\ORM\TableRegistry;
- use Cake\TestSuite\TestCase;
- /**
- * App\Model\Table\ArticlesTable Test Case
- */
- class ArticlesTableTest extends TestCase {
- /**
- * setUp method
- *
- * @return void
- */
- public function setUp() {
- parent::setUp();
- $config = TableRegistry::exists('Articles') ? [] : ['className' => 'App\Model\Table\ArticlesTable'];
- $this->Articles = TableRegistry::get('Articles', $config);
- }
- /**
- * tearDown method
- *
- * @return void
- */
- public function tearDown() {
- unset($this->Articles);
- parent::tearDown();
- }
- /**
- * Test initial setup
- *
- * @return void
- */
- public function testInitialization() {
- $this->markTestIncomplete('Not implemented yet.');
- }
- }
|