2009-01-22 19:38:10 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests;
|
|
|
|
|
2017-03-31 17:20:10 +01:00
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
2009-01-22 19:38:10 +00:00
|
|
|
/**
|
|
|
|
* Base testcase class for all Doctrine testcases.
|
|
|
|
*/
|
2017-03-31 17:20:10 +01:00
|
|
|
abstract class DoctrineTestCase extends TestCase
|
2009-01-22 19:38:10 +00:00
|
|
|
{
|
2012-12-14 18:55:49 +00:00
|
|
|
}
|