function FormAjaxResponseBuilderTest::testBuildResponseNoTriggeringElement
@covers ::buildResponse
      
    
File
- 
              core/
tests/ Drupal/ Tests/ Core/ Form/ FormAjaxResponseBuilderTest.php, line 48  
Class
- FormAjaxResponseBuilderTest
 - @coversDefaultClass \Drupal\Core\Form\FormAjaxResponseBuilder[[api-linebreak]] @group Form
 
Namespace
Drupal\Tests\Core\FormCode
public function testBuildResponseNoTriggeringElement() {
  $this->renderer
    ->expects($this->never())
    ->method('renderResponse');
  $request = new Request();
  $form = [];
  $form_state = new FormState();
  $commands = [];
  $this->expectException(HttpException::class);
  $this->formAjaxResponseBuilder
    ->buildResponse($request, $form, $form_state, $commands);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.