forked from xyl66/Thinkphp5
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExampleTest.php
More file actions
20 lines (18 loc) · 749 Bytes
/
Copy pathExampleTest.php
File metadata and controls
20 lines (18 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2015 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: yunwuxin <[email protected]>
// +----------------------------------------------------------------------
namespace tests;
class ExampleTest extends TestCase
{
public function testBasicExample()
{
$this->visit('/')->see('ThinkPHP');
}
}