You are here

public function ViewExecutableTest::testProperties in Views (for Drupal 7) 8.3

Tests the accessing of values on the object.

File

lib/Drupal/views/Tests/ViewExecutableTest.php, line 108
Definition of Drupal\views\Tests\ViewExecutableTest.

Class

ViewExecutableTest
Tests the ViewExecutable class.

Namespace

Drupal\views\Tests

Code

public function testProperties() {
  $view = $this
    ->getView();
  foreach ($this->executableProperties as $property) {
    $this
      ->assertTrue(isset($view->{$property}));
  }
}