-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathInteractsWithApp.php
More file actions
30 lines (25 loc) · 880 Bytes
/
InteractsWithApp.php
File metadata and controls
30 lines (25 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
namespace think\tests;
use Mockery as m;
use Mockery\MockInterface;
use think\App;
use think\Config;
use think\Container;
trait InteractsWithApp
{
/** @var App|MockInterface */
protected $app;
/** @var Config|MockInterface */
protected $config;
protected function prepareApp()
{
$this->app = m::mock(App::class)->makePartial();
Container::setInstance($this->app);
$this->app->shouldReceive('make')->with(App::class)->andReturn($this->app);
$this->app->shouldReceive('isDebug')->andReturnTrue();
$this->config = m::mock(Config::class)->makePartial();
$this->config->shouldReceive('get')->with('app.show_error_msg')->andReturnTrue();
$this->app->shouldReceive('get')->with('config')->andReturn($this->config);
$this->app->shouldReceive('runningInConsole')->andReturn(false);
}
}