public function testUpdate()
{
// Connect to the desired database connection
$connection = DB::connection('my_connection');
$connection->beginTransaction();
// Do the update
// Check if the update was successful
// Rollback the transaction
$connection->rollBack();
}