You are here

private static property TransactionTest::$test_data in Transaction 5

Sample data to populate the test table with.

File

tests/transaction.test, line 13
Contains the test for the transaction module (formerly pressflow_transaction).

Class

TransactionTest
Implements the test cases for the transaction module.

Code

private static $test_data = array(
  array(
    'John',
    'Smith',
    1,
  ),
  array(
    'Herbert',
    'Wells',
    0,
  ),
  array(
    'Amadeus',
    'Mozart',
    4,
  ),
  array(
    'John',
    'Stewart',
    0,
  ),
  array(
    'Sara',
    'Smith',
    0,
  ),
  array(
    'Jennifer',
    'Saunders',
    3,
  ),
  array(
    'Neko',
    'Case',
    1,
  ),
  array(
    'Albert',
    'Einstein',
    2,
  ),
  array(
    'Frank',
    'Herbert',
    9,
  ),
  array(
    'Geddy',
    'Lee',
    0,
  ),
  array(
    'Joel',
    'Hartford',
    0,
  ),
);