public function FormStateTest::testLoadInclude in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/Form/FormStateTest.php \Drupal\Tests\Core\Form\FormStateTest::testLoadInclude()
@covers ::loadInclude
File
- core/
tests/ Drupal/ Tests/ Core/ Form/ FormStateTest.php, line 345 - Contains \Drupal\Tests\Core\Form\FormStateTest.
Class
- FormStateTest
- @coversDefaultClass \Drupal\Core\Form\FormState
Namespace
Drupal\Tests\Core\FormCode
public function testLoadInclude() {
$type = 'some_type';
$module = 'some_module';
$name = 'some_name';
$form_state = $this
->getMockBuilder('Drupal\\Core\\Form\\FormState')
->setMethods(array(
'moduleLoadInclude',
))
->getMock();
$form_state
->expects($this
->once())
->method('moduleLoadInclude')
->with($module, $type, $name)
->willReturn(TRUE);
$this
->assertTrue($form_state
->loadInclude($module, $type, $name));
}