protected function LingotekDashboardControllerTest::setUpConfigurableLanguageMock in Lingotek Translation 8
Same name and namespace in other branches
- 8.2 tests/src/Unit/Controller/LingotekDashboardControllerTest.php \Drupal\Tests\lingotek\Unit\Controller\LingotekDashboardControllerTest::setUpConfigurableLanguageMock()
- 4.0.x tests/src/Unit/Controller/LingotekDashboardControllerTest.php \Drupal\Tests\lingotek\Unit\Controller\LingotekDashboardControllerTest::setUpConfigurableLanguageMock()
- 3.0.x tests/src/Unit/Controller/LingotekDashboardControllerTest.php \Drupal\Tests\lingotek\Unit\Controller\LingotekDashboardControllerTest::setUpConfigurableLanguageMock()
- 3.1.x tests/src/Unit/Controller/LingotekDashboardControllerTest.php \Drupal\Tests\lingotek\Unit\Controller\LingotekDashboardControllerTest::setUpConfigurableLanguageMock()
- 3.2.x tests/src/Unit/Controller/LingotekDashboardControllerTest.php \Drupal\Tests\lingotek\Unit\Controller\LingotekDashboardControllerTest::setUpConfigurableLanguageMock()
- 3.3.x tests/src/Unit/Controller/LingotekDashboardControllerTest.php \Drupal\Tests\lingotek\Unit\Controller\LingotekDashboardControllerTest::setUpConfigurableLanguageMock()
- 3.4.x tests/src/Unit/Controller/LingotekDashboardControllerTest.php \Drupal\Tests\lingotek\Unit\Controller\LingotekDashboardControllerTest::setUpConfigurableLanguageMock()
- 3.5.x tests/src/Unit/Controller/LingotekDashboardControllerTest.php \Drupal\Tests\lingotek\Unit\Controller\LingotekDashboardControllerTest::setUpConfigurableLanguageMock()
- 3.6.x tests/src/Unit/Controller/LingotekDashboardControllerTest.php \Drupal\Tests\lingotek\Unit\Controller\LingotekDashboardControllerTest::setUpConfigurableLanguageMock()
- 3.7.x tests/src/Unit/Controller/LingotekDashboardControllerTest.php \Drupal\Tests\lingotek\Unit\Controller\LingotekDashboardControllerTest::setUpConfigurableLanguageMock()
- 3.8.x tests/src/Unit/Controller/LingotekDashboardControllerTest.php \Drupal\Tests\lingotek\Unit\Controller\LingotekDashboardControllerTest::setUpConfigurableLanguageMock()
Setup the entity type manager for returning configurable language storage and its mocks.
2 calls to LingotekDashboardControllerTest::setUpConfigurableLanguageMock()
- LingotekDashboardControllerTest::testNodeTypesEnabledForLingotekTranslation in tests/
src/ Unit/ Controller/ LingotekDashboardControllerTest.php - Tests that when the node entity type is enabled, the response contains the stats of nodes.
- LingotekDashboardControllerTest::testNoTypesEnabledForLingotekTranslation in tests/
src/ Unit/ Controller/ LingotekDashboardControllerTest.php - Tests that when no type is enabled, no types are included in the stats.
File
- tests/
src/ Unit/ Controller/ LingotekDashboardControllerTest.php, line 239
Class
- LingotekDashboardControllerTest
- @coversDefaultClass \Drupal\lingotek\Controller\LingotekDashboardController @group lingotek @preserveGlobalState disabled
Namespace
Drupal\Tests\lingotek\Unit\ControllerCode
protected function setUpConfigurableLanguageMock() {
$language = $this
->getMock('Drupal\\language\\ConfigurableLanguageInterface');
$storage = $this
->getMock('Drupal\\Core\\Entity\\EntityStorageInterface');
$storage
->expects($this
->any())
->method('load')
->willReturn($language);
$this->entityTypeManager
->expects($this
->any())
->method('getStorage')
->willReturn($storage);
}