NodeTestBase.php in Freelinking 4.0.x
File
tests/src/Unit/Plugin/freelinking/NodeTestBase.php
View source
<?php
namespace Drupal\Tests\freelinking\Unit\Plugin\freelinking;
use Drupal\Core\Language\Language;
use Drupal\Tests\UnitTestCase;
use Prophecy\PhpUnit\ProphecyTrait;
abstract class NodeTestBase extends UnitTestCase {
use ProphecyTrait;
public static function getDefaultLanguage() {
return new Language(Language::$defaultValues);
}
}
Classes
Name |
Description |
NodeTestBase |
Provides helper methods for freelinking node plugins. |