LingotekNodeExistingBulkViewsTranslationTest.php in Lingotek Translation 3.6.x
Same filename and directory in other branches
- 8.2 tests/src/Functional/Views/LingotekNodeExistingBulkViewsTranslationTest.php
- 4.0.x tests/src/Functional/Views/LingotekNodeExistingBulkViewsTranslationTest.php
- 3.0.x tests/src/Functional/Views/LingotekNodeExistingBulkViewsTranslationTest.php
- 3.1.x tests/src/Functional/Views/LingotekNodeExistingBulkViewsTranslationTest.php
- 3.2.x tests/src/Functional/Views/LingotekNodeExistingBulkViewsTranslationTest.php
- 3.3.x tests/src/Functional/Views/LingotekNodeExistingBulkViewsTranslationTest.php
- 3.4.x tests/src/Functional/Views/LingotekNodeExistingBulkViewsTranslationTest.php
- 3.5.x tests/src/Functional/Views/LingotekNodeExistingBulkViewsTranslationTest.php
- 3.7.x tests/src/Functional/Views/LingotekNodeExistingBulkViewsTranslationTest.php
- 3.8.x tests/src/Functional/Views/LingotekNodeExistingBulkViewsTranslationTest.php
Namespace
Drupal\Tests\lingotek\Functional\ViewsFile
tests/src/Functional/Views/LingotekNodeExistingBulkViewsTranslationTest.phpView source
<?php
namespace Drupal\Tests\lingotek\Functional\Views;
use Drupal\Tests\lingotek\Functional\LingotekNodeExistingBulkTranslationTest;
/**
* Tests translating a node using the bulk management form.
*
* @group lingotek
*/
class LingotekNodeExistingBulkViewsTranslationTest extends LingotekNodeExistingBulkTranslationTest {
use LingotekViewsTestTrait;
/**
* {@inheritdoc}
*/
public static $modules = [
'block',
'node',
'views',
];
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
\Drupal::getContainer()
->get('module_installer')
->install([
'lingotek_views_test',
], TRUE);
}
public function testNodeIsUntracked() {
$this
->markTestSkipped('This doesn\'t apply as we cannot show the untracked status if there is no value. We may want to convert the target statuses to a partially computed field at a later time.');
}
}
Classes
Name | Description |
---|---|
LingotekNodeExistingBulkViewsTranslationTest | Tests translating a node using the bulk management form. |