Initial commit

This commit is contained in:
2018-04-02 08:23:14 +02:00
commit 9b83d1dc09
151 changed files with 20566 additions and 0 deletions

View File

@@ -0,0 +1,87 @@
<?php
namespace App\Test\TestCase\Model\Table;
use App\Model\Table\SchoolsTable;
use Cake\ORM\TableRegistry;
use Cake\TestSuite\TestCase;
/**
* App\Model\Table\SchoolsTable Test Case
*/
class SchoolsTableTest extends TestCase
{
/**
* Test subject
*
* @var \App\Model\Table\SchoolsTable
*/
public $Schools;
/**
* Fixtures
*
* @var array
*/
public $fixtures = [
'app.schools',
'app.budget',
'app.wl_schooltypes',
'app.wl_budgets',
'app.wl_wertelistes'
];
/**
* setUp method
*
* @return void
*/
public function setUp()
{
parent::setUp();
$config = TableRegistry::exists('Schools') ? [] : ['className' => SchoolsTable::class];
$this->Schools = TableRegistry::get('Schools', $config);
}
/**
* tearDown method
*
* @return void
*/
public function tearDown()
{
unset($this->Schools);
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.');
}
/**
* Test buildRules method
*
* @return void
*/
public function testBuildRules()
{
$this->markTestIncomplete('Not implemented yet.');
}
}