You are here

protected function UUIDSyncTestCase::assertTableColumn in Universally Unique IDentifier 7

Helper function that asserts that a database table column exists.

@todo There are something weird around this assertion.

1 call to UUIDSyncTestCase::assertTableColumn()
UUIDSyncTestCase::testSync in ./uuid.test
Tests creating UUIDs for entities that don't have them.

File

./uuid.test, line 663
Test suite for UUID module.

Class

UUIDSyncTestCase
Tests for the UUID synchronization.

Code

protected function assertTableColumn($table, $column, $message) {
  $this
    ->assertTrue(db_field_exists($table, $column), $message);
}