File "ChangeCurrentWorkingDirectoryTest.php"
Full Path: /www/wwwroot/shphe-en.com/smsapi/api_sdk/vendor/phpunit/phpunit/tests/_files/ChangeCurrentWorkingDirectoryTest.php
File size: 205 bytes
MIME-type: --
Charset: utf-8
<?php
class ChangeCurrentWorkingDirectoryTest extends PHPUnit_Framework_TestCase
{
public function testSomethingThatChangesTheCwd()
{
chdir('../');
$this->assertTrue(true);
}
}