Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
smsapi
/
api_sdk
/
vendor
/
phpunit
/
phpunit
/
tests
/
_files
:
DoubleTestCase.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php class DoubleTestCase implements PHPUnit_Framework_Test { protected $testCase; public function __construct(PHPUnit_Framework_TestCase $testCase) { $this->testCase = $testCase; } public function count() { return 2; } public function run(PHPUnit_Framework_TestResult $result = null) { $result->startTest($this); $this->testCase->runBare(); $this->testCase->runBare(); $result->endTest($this, 0); } }