123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- use Codeception\Util\Fixtures;
- use Grav\Common\Grav;
- class BrowserTest extends \Codeception\TestCase\Test
- {
-
- protected $grav;
- protected function _before(): void
- {
- $grav = Fixtures::get('grav');
- $this->grav = $grav();
- }
- protected function _after(): void
- {
- }
- public function testGetBrowser(): void
- {
-
- }
- public function testGetPlatform(): void
- {
-
- }
- public function testGetLongVersion(): void
- {
-
- }
- public function testGetVersion(): void
- {
-
- }
- public function testIsHuman(): void
- {
-
-
- self::assertFalse($this->grav['browser']->isHuman());
- }
- }
|