drupal_yext-8.x-1.0/modules/drupal_yext_find_by_title/tests/src/Unit/Plugin/YextPlugin/FindByTitleTest.php
modules/drupal_yext_find_by_title/tests/src/Unit/Plugin/YextPlugin/FindByTitleTest.php
<?php
namespace Drupal\Tests\drupal_yext\Unit\Plugin\YextPlugin;
use Drupal\drupal_yext_find_by_title\Plugin\YextPlugin\FindByTitle;
use PHPUnit\Framework\TestCase;
/**
* Test FindByTitle.
*
* @group expose_status
*/
class TestFindByTitleTest extends TestCase {
/**
* Smoke test.
*/
public function testSmoke() {
$object = $this->getMockBuilder(FindByTitle::class)
// NULL = no methods are mocked; otherwise list the methods here.
->setMethods(NULL)
->disableOriginalConstructor()
->getMock();
$this->assertTrue(is_object($object));
}
}
