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