Ejemplo n.º 1
0
 function dataSet()
 {
     // Use default dataset but remove the age from john and paul
     $data = parent::dataSet();
     $data[0]['age'] = 0;
     $data[3]['age'] = 0;
     return $data;
 }
Ejemplo n.º 2
0
 /**
  * Add more items to the test set, to make the order tests more robust.
  *
  * In total we have then 60 entries, which makes a probability of a collision
  * of 1/60!, which is around 1/1E80, which is higher than the estimated amount
  * of protons / electrons in the observable universe, also called the
  * eddington number.
  *
  * @see http://en.wikipedia.org/wiki/Eddington_number
  */
 protected function dataSet()
 {
     $data = parent::dataSet();
     for ($i = 0; $i < 55; $i++) {
         $data[] = array('name' => 'name_' . $i, 'age' => $i, 'job' => 'job_' . $i, 'created' => rand(0, time()), 'status' => 1);
     }
     return $data;
 }
Ejemplo n.º 3
0
 /**
  * {@inheritdoc}
  */
 public function dataSet()
 {
     $datas = parent::dataSet();
     foreach ($datas as $i => $data) {
         $datas[$i]['destroyed'] = gmmktime(0, 0, 0, 1, 1, 2050);
     }
     return $datas;
 }
Ejemplo n.º 4
0
 function dataSet()
 {
     $data = parent::dataSet();
     $data[0]['age'] = 0;
     $data[1]['age'] = 10;
     $data[2]['age'] = 1000;
     $data[3]['age'] = 10000;
     return $data;
 }
Ejemplo n.º 5
0
 /**
  * Overrides \Drupal\views\Tests\ViewTestBase::dataSet().
  */
 protected function dataSet()
 {
     $data = parent::dataSet();
     $data[0]['langcode'] = 'en';
     $data[1]['langcode'] = 'xx-lolspeak';
     $data[2]['langcode'] = '';
     $data[3]['langcode'] = '';
     $data[4]['langcode'] = '';
     return $data;
 }
Ejemplo n.º 6
0
 /**
  * An extended test dataset.
  */
 protected function dataSet()
 {
     $dataset = parent::dataSet();
     $dataset[0]['description'] = 'John Winston Ono Lennon, MBE (9 October 1940 – 8 December 1980) was an English musician and singer-songwriter who rose to worldwide fame as one of the founding members of The Beatles, one of the most commercially successful and critically acclaimed acts in the history of popular music. Along with fellow Beatle Paul McCartney, he formed one of the most successful songwriting partnerships of the 20th century.';
     $dataset[1]['description'] = 'George Harrison,[1] MBE (25 February 1943 – 29 November 2001)[2] was an English rock guitarist, singer-songwriter, actor and film producer who achieved international fame as lead guitarist of The Beatles.';
     $dataset[2]['description'] = 'Richard Starkey, MBE (born 7 July 1940), better known by his stage name Ringo Starr, is an English musician, singer-songwriter, and actor who gained worldwide fame as the drummer for The Beatles.';
     $dataset[3]['description'] = 'Sir James Paul McCartney, MBE (born 18 June 1942) is an English musician, singer-songwriter and composer. Formerly of The Beatles (1960–1970) and Wings (1971–1981), McCartney is the most commercially successful songwriter in the history of popular music, according to Guinness World Records.[1]';
     $dataset[4]['description'] = NULL;
     return $dataset;
 }
 /**
  * {@inheritdoc}
  */
 protected function dataSet()
 {
     $data = parent::dataSet();
     foreach ($data as &$row) {
         if ($row['status']) {
             $row['status'] = 'Enabled';
         } else {
             $row['status'] = '';
         }
     }
     return $data;
 }
Ejemplo n.º 8
0
 /**
  * Additional data to test the NULL issue.
  */
 protected function dataSet()
 {
     $data_set = parent::dataSet();
     $data_set[] = array('name' => 'Ginger', 'age' => 25, 'job' => NULL, 'created' => gmmktime(0, 0, 0, 1, 2, 2000), 'status' => 1);
     return $data_set;
 }