diff --git a/database-testing.md b/database-testing.md
index f4eb1acdba..4545a81268 100644
--- a/database-testing.md
+++ b/database-testing.md
@@ -196,6 +196,13 @@ Assert that a table in the database contains the given number of records:
$this->assertDatabaseCount('users', 5);
+
+#### assertDatabaseEmpty
+
+Assert that a table in the database contains no records:
+
+ $this->assertDatabaseEmpty('users');
+
#### assertDatabaseHas