function ViewsLocalTaskTest::setUp
Overrides UnitTestCase::setUp
File
- 
              core/
modules/ views/ tests/ src/ Unit/ Plugin/ Derivative/ ViewsLocalTaskTest.php, line 55  
Class
- ViewsLocalTaskTest
 - @coversDefaultClass \Drupal\views\Plugin\Derivative\ViewsLocalTask[[api-linebreak]] @group views
 
Namespace
Drupal\Tests\views\Unit\Plugin\DerivativeCode
protected function setUp() : void {
  $this->routeProvider = $this->createMock('Drupal\\Core\\Routing\\RouteProviderInterface');
  $this->state = $this->createMock('Drupal\\Core\\State\\StateInterface');
  $this->viewStorage = $this->createMock('Drupal\\Core\\Entity\\EntityStorageInterface');
  $this->localTaskDerivative = new TestViewsLocalTask($this->routeProvider, $this->state, $this->viewStorage);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.