public function ViewExecutableTest::testProperties

Tests the accessing of values on the object.

File

drupal/core/modules/views/lib/Drupal/views/Tests/ViewExecutableTest.php, line 107
Definition of Drupal\views\Tests\ViewExecutableTest.

Class

ViewExecutableTest
Tests the ViewExecutable class.

Namespace

Drupal\views\Tests

Code

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