You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
559 B
PHP
23 lines
559 B
PHP
<?php
|
|
|
|
namespace Engelsystem\Test\Unit\Models;
|
|
|
|
use Engelsystem\Test\Unit\Models\Stub\BaseModelImplementation;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class BaseModelTest extends TestCase
|
|
{
|
|
/**
|
|
* @covers \Engelsystem\Models\BaseModel::create
|
|
*/
|
|
public function testCreate()
|
|
{
|
|
$model = new BaseModelImplementation();
|
|
$newModel = $model->create(['foo' => 'bar']);
|
|
|
|
$this->assertNotEquals($model, $newModel);
|
|
$this->assertEquals('bar', $newModel->foo);
|
|
$this->assertEquals(1, $newModel->saveCount);
|
|
}
|
|
}
|