1 views_pager.test public ViewsPagerTest::createNodes($count)

File

core/modules/views/tests/views_pager.test, line 177
Definition of ViewsPagerTest.

Class

ViewsPagerTest
Tests the pluggable pager system.

Code

public function createNodes($count) {
  if ($count >= 0) {
    for ($i = 0; $i < $count; $i++) {
      $this->backdropCreateNode();
    }
  }
}