assert the link record was created
This commit is contained in:
parent
04d03bd0bf
commit
8e778cce57
|
@ -5,6 +5,7 @@ namespace CakeProducts\Test\TestCase\Controller;
|
|||
|
||||
use Cake\Log\Log;
|
||||
use Cake\ORM\Table;
|
||||
use Cake\ORM\TableRegistry;
|
||||
use Cake\TestSuite\IntegrationTestTrait;
|
||||
use Cake\TestSuite\TestCase;
|
||||
use CakeProducts\Controller\ExternalProductCatalogsController;
|
||||
|
@ -148,8 +149,9 @@ class ExternalProductCatalogsControllerTest extends BaseControllerTest
|
|||
*/
|
||||
public function testAddPostSuccess(): void
|
||||
{
|
||||
$linksTable = TableRegistry::getTableLocator()->get('CakeProducts.ExternalProductCatalogsProductCatalogs');
|
||||
$cntBefore = $this->ExternalProductCatalogs->find()->count();
|
||||
$linksBefore = $this->ExternalProductCatalogs->ExternalProductCatalogsProductCatalogs->find()->count();
|
||||
$linksBefore = $linksTable->find()->count();
|
||||
|
||||
$this->loginUserByRole('admin');
|
||||
$url = [
|
||||
|
@ -170,7 +172,7 @@ class ExternalProductCatalogsControllerTest extends BaseControllerTest
|
|||
$this->assertRedirectContains('external-product-catalogs');
|
||||
|
||||
$cntAfter = $this->ExternalProductCatalogs->find()->count();
|
||||
$linksAfter = $this->ExternalProductCatalogs->ExternalProductCatalogsProductCatalogs->find()->count();
|
||||
$linksAfter = $linksTable->find()->count();
|
||||
|
||||
$this->assertEquals($cntBefore + 1, $cntAfter);
|
||||
$this->assertEquals($linksBefore + 1, $linksAfter);
|
||||
|
|
Loading…
Reference in New Issue