gmarche/vendor/phpunit/phpunit/tests/_files/IsolationTest.php

14 lines
296 B
PHP
Raw Normal View History

2019-10-25 00:13:47 +02:00
<?php
class IsolationTest extends PHPUnit_Framework_TestCase
{
public function testIsInIsolationReturnsFalse()
{
$this->assertFalse($this->isInIsolation());
}
public function testIsInIsolationReturnsTrue()
{
$this->assertTrue($this->isInIsolation());
}
}