* @copyright 2010-2013 Sebastian Bergmann * @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License * @link http://www.phpunit.de/ */ class CustomDesiredCapabilitiesTest extends BaseTestCase { public function setUp(): void { parent::setUp(); $this->setDesiredCapabilities(array( 'platform' => 'ANY' )); } public function testOpen() { $this->url('html/test_open.html'); $this->assertStringEndsWith('html/test_open.html', $this->url()); } }