1. Go to this page and download the library: Download dama/doctrine-test-bundle library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
#[SkipDatabaseRollback] // this will skip it for all tests in a class
public class MyTest extends \PHPUnit\Framework\TestCase {}
#[SkipDatabaseRollback] // also supported on (abstract) parent classes. So all tests in child classes will skip the rollback logic.
abstract class MyAbstractTest extends \PHPUnit\Framework\TestCase {}
#[SkipDatabaseRollback] // this will skip it for only one test method
public function MyTest() {}
public function testMyTestCaseThatINeedToDebug()
{
// ... something thats changes the DB state
\DAMA\DoctrineTestBundle\Doctrine\DBAL\StaticDriver::commit();
die;
// now the DB changes are actually persisted and you can debug them
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.