From 8e778cce57d7165094566c7035520d6730cf6a91 Mon Sep 17 00:00:00 2001 From: Brandon Shipley Date: Mon, 31 Mar 2025 02:02:34 -0700 Subject: [PATCH] assert the link record was created --- .../Controller/ExternalProductCatalogsControllerTest.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/TestCase/Controller/ExternalProductCatalogsControllerTest.php b/tests/TestCase/Controller/ExternalProductCatalogsControllerTest.php index d4c0235..204a6b7 100644 --- a/tests/TestCase/Controller/ExternalProductCatalogsControllerTest.php +++ b/tests/TestCase/Controller/ExternalProductCatalogsControllerTest.php @@ -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);