add server-side code and mobile app code

This commit is contained in:
Odweta
2024-01-07 01:11:37 +00:00
parent 5aff4ac5a6
commit 263efd5b65
402 changed files with 71488 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
<?php
/*
* This file is part of the Goutte package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Goutte\Tests;
use Goutte\Client;
use PHPUnit\Framework\TestCase;
use Symfony\Component\BrowserKit\HttpBrowser;
class ClientTest extends TestCase
{
public function testNew()
{
$client = new Client();
$this->assertInstanceOf(HttpBrowser::class, $client);
}
}