1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 09:37:59 +01:00
psalm/tests/TestEnvironmentTest.php

22 lines
415 B
PHP
Raw Normal View History

<?php
2023-10-19 13:12:06 +02:00
declare(strict_types=1);
namespace Psalm\Tests;
use PHPUnit\Framework\TestCase as PHPUnitTestCase;
use function ini_get;
class TestEnvironmentTest extends PHPUnitTestCase
{
public function testIniSettings(): void
{
$this->assertSame(
'1',
ini_get('zend.assertions'),
'zend.assertions should be set to 1 to increase test strictness',
);
}
}