gradido/community_server/tests/TestCase/Model/Table/CommunityProfilesTableTest.php
Ulf Gebhardt 6fe5fd6d7e Add 'community_server/' from commit 'b6544b9e69fb85d4da100934675323c3e8c8ef67'
git-subtree-dir: community_server
git-subtree-mainline: ff11f6efe35bba180260fe84077bcd94298895c1
git-subtree-split: b6544b9e69fb85d4da100934675323c3e8c8ef67
2021-03-17 00:39:06 +01:00

73 lines
1.4 KiB
PHP

<?php
namespace App\Test\TestCase\Model\Table;
use App\Model\Table\CommunityProfilesTable;
use Cake\ORM\TableRegistry;
use Cake\TestSuite\TestCase;
/**
* App\Model\Table\CommunityProfilesTable Test Case
*/
class CommunityProfilesTableTest extends TestCase
{
/**
* Test subject
*
* @var \App\Model\Table\CommunityProfilesTable
*/
public $CommunityProfiles;
/**
* Fixtures
*
* @var array
*/
public $fixtures = [
'app.CommunityProfiles',
];
/**
* setUp method
*
* @return void
*/
public function setUp()
{
parent::setUp();
$config = TableRegistry::getTableLocator()->exists('CommunityProfiles') ? [] : ['className' => CommunityProfilesTable::class];
$this->CommunityProfiles = TableRegistry::getTableLocator()->get('CommunityProfiles', $config);
}
/**
* tearDown method
*
* @return void
*/
public function tearDown()
{
unset($this->CommunityProfiles);
parent::tearDown();
}
/**
* Test initialize method
*
* @return void
*/
public function testInitialize()
{
$this->markTestIncomplete('Not implemented yet.');
}
/**
* Test validationDefault method
*
* @return void
*/
public function testValidationDefault()
{
$this->markTestIncomplete('Not implemented yet.');
}
}