You are here

public function UpdateLayoutRequestHandlerTest::successfulTempStoreSaveOperationResultsInEmptyJsonResponse in Panels 8.3

@test

File

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

Class

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

Namespace

Drupal\Tests\panels\Unit\panels_ipe

Code

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