protected function DatabaseTransactionTestCase::insertRow

7.x database_test.test protected DatabaseTransactionTestCase::insertRow($name)

Insert a single row into the testing table.

2 calls to DatabaseTransactionTestCase::insertRow()
DatabaseTransactionTestCase::testTransactionStacking in drupal-7.x/modules/simpletest/tests/database_test.test
Test transaction stacking and commit / rollback.
DatabaseTransactionTestCase::testTransactionWithDdlStatement in drupal-7.x/modules/simpletest/tests/database_test.test
Test the compatibility of transactions with DDL statements.

File

drupal-7.x/modules/simpletest/tests/database_test.test, line 3640

Class

DatabaseTransactionTestCase
Test transaction support, particularly nesting.

Code

protected function insertRow($name) {
  db_insert('test')
    ->fields(array(
      'name' => $name,
    ))
    ->execute();
}