File "IsolationTest.php"
Full Path: /www/wwwroot/shphe-en.com/smsapi/api_sdk/vendor/phpunit/phpunit/tests/_files/IsolationTest.php
File size: 296 bytes
MIME-type: --
Charset: utf-8
<?php
class IsolationTest extends PHPUnit_Framework_TestCase
{
public function testIsInIsolationReturnsFalse()
{
$this->assertFalse($this->isInIsolation());
}
public function testIsInIsolationReturnsTrue()
{
$this->assertTrue($this->isInIsolation());
}
}