function NotificationsContentTests::assertRowCount in Notifications 7
Same name and namespace in other branches
- 6.4 tests/notifications_content.test \NotificationsContentTests::assertRowCount()
- 6.2 tests/notifications_content.test \NotificationsContentTests::assertRowCount()
- 6.3 tests/notifications_content.test \NotificationsContentTests::assertRowCount()
1 call to NotificationsContentTests::assertRowCount()
- NotificationsContentTests::testNotificationsContent in tests/
notifications_content.test - Play with creating, retrieving, deleting a pair subscriptions
File
- tests/
notifications_content.test, line 288
Class
Code
function assertRowCount($table, $target, $message = 'We have the right number of rows in table') {
$count = db_result(db_query("SELECT COUNT(*) FROM {" . $table . "}"));
$this
->assertEqual($count, $target, $message . " ({$table}, {$target} = {$count})");
}