use Doctrine\ORM\Mapping\UnderscoreNamingStrategy;
8
use Doctrine\Tests\VerifyDeprecations;
9
use PHPUnit\Framework\TestCase;
10
use const CASE_LOWER;
11
12
final class UnderscoreNamingStrategyTest extends TestCase
13
{
14
use VerifyDeprecations;
15
16
/** @test */
17
public function checkDeprecationMessage() : void
18
{
19
$this->expectDeprecationMessage('Creating Doctrine\ORM\Mapping\UnderscoreNamingStrategy without making it number aware is deprecated and will be removed in Doctrine 3.0.');