$char . $this->randomMachineName(), ); $this->drupalCreateNode($edit); } } $view = Views::getView('test_glossary'); $this->executeView($view); $count_field = 'nid'; foreach ($view->result as &$row) { if (strpos($view->field['title']->getValue($row), 'a') === 0) { $this->assertEqual(1, $row->{$count_field}); } if (strpos($view->field['title']->getValue($row), 'b') === 0) { $this->assertEqual(2, $row->{$count_field}); } if (strpos($view->field['title']->getValue($row), 'c') === 0) { $this->assertEqual(3, $row->{$count_field}); } } } }