You are here

public function UpdateLayoutRequestHandlerTest::successfulSaveOperationResultsInEmptyJsonResponse in Panels 8.3

@test

File

tests/src/Unit/panels_ipe/UpdateLayoutRequestHandlerTest.php, line 56

Class

UpdateLayoutRequestHandlerTest
Tests for \Drupal\panels_ipe\Helpers\UpdateLayoutRequestHandler.

Namespace

Drupal\Tests\panels\Unit\panels_ipe

Code

public function successfulSaveOperationResultsInEmptyJsonResponse() {
  $this
    ->setPanelsDisplayExpectations();
  $this->sut
    ->handleRequest($this->panelsDisplay, $this
    ->createRequest(Json::encode($this
    ->getLayoutModel())));
  $this
    ->assertEquals(new JsonResponse([]), $this->sut
    ->getJsonResponse());
}