Laravel\Lumen\Testing\TestCase::notSeeInDatabase PHP Метод

notSeeInDatabase() защищенный Метод

Assert that a given where condition does not exist in the database.
protected notSeeInDatabase ( string $table, array $data, string | null $onConnection = null )
$table string
$data array
$onConnection string | null
    protected function notSeeInDatabase($table, array $data, $onConnection = null)
    {
        $count = $this->app->make('db')->connection($onConnection)->table($table)->where($data)->count();
        $this->assertEquals(0, $count, sprintf('Found unexpected records in database table [%s] that matched attributes [%s].', $table, json_encode($data)));
        return $this;
    }