]> git.mxchange.org Git - friendica.git/blob - tests/src/App/RouterTest.php
Add more special chars at tests
[friendica.git] / tests / src / App / RouterTest.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Test\src\App;
23
24 use Dice\Dice;
25 use Friendica\App\Arguments;
26 use Friendica\Core\Cache\Capability\ICanCache;
27 use Friendica\Core\Config\Capability\IManageConfigValues;
28 use Friendica\Core\L10n;
29 use Friendica\Core\Lock\Capability\ICanLock;
30 use Mockery;
31 use Mockery\MockInterface;
32 use PHPUnit\Framework\TestCase;
33
34 class RouterTest extends TestCase
35 {
36         /** @var L10n|MockInterface */
37         private $l10n;
38         /**
39          * @var ICanCache
40          */
41         private $cache;
42         /**
43          * @var ICanLock
44          */
45         private $lock;
46         /**
47          * @var IManageConfigValues
48          */
49         private $config;
50         /**
51          * @var Dice
52          */
53         private $dice;
54         /**
55          * @var Arguments
56          */
57         private $arguments;
58
59         protected function setUp(): void
60         {
61                 parent::setUp();
62
63                 self::markTestIncomplete('Router tests need refactoring!');
64
65                 /*
66                 $this->l10n = Mockery::mock(L10n::class);
67                 $this->l10n->shouldReceive('t')->andReturnUsing(function ($args) { return $args; });
68
69                 $this->cache = Mockery::mock(ICanCache::class);
70                 $this->cache->shouldReceive('get')->andReturn(null);
71                 $this->cache->shouldReceive('set')->andReturn(false);
72
73                 $this->lock = Mockery::mock(ICanLock::class);
74                 $this->lock->shouldReceive('acquire')->andReturn(true);
75                 $this->lock->shouldReceive('isLocked')->andReturn(false);
76
77                 $this->config = Mockery::mock(IManageConfigValues::class);
78
79                 $this->dice = new Dice();
80
81                 $this->arguments = Mockery::mock(Arguments::class);
82                 */
83         }
84
85         public function test()
86         {
87
88         }
89 }