### 安装和运行
~~~php
// 将其加入到 composer.json 并更新:
composer require "phpunit/phpunit:4.0.*"
// 运行测试 (在项目根目录下运行)
./vendor/bin/phpunit
~~~
### 断言
~~~php
$this->assertTrue(true);
$this->assertEquals('foo', $bar);
$this->assertCount(1,$times);
$this->assertResponseOk();
$this->assertResponseStatus(403);
$this->assertRedirectedTo('foo');
$this->assertRedirectedToRoute('route.name');
$this->assertRedirectedToAction('Controller@method');
$this->assertViewHas('name');
$this->assertViewHas('age', $value);
$this->assertSessionHasErrors();
// 由单个 key 值来假定 session 有错误...
$this->assertSessionHasErrors('name');
// 由多个 key 值来假定 session 有错误...
$this->assertSessionHasErrors(array('name', 'age'));
$this->assertHasOldInput();
~~~
### 访问路由
~~~php
$response = $this->call($method, $uri, $parameters, $files, $server, $content);
$response = $this->callSecure('GET', 'foo/bar');
$this->session(['foo' => 'bar']);
$this->flushSession();
$this->seed();
$this->seed($connection);
~~~
- 参考知识--非必学仅供必要时候查询
- 知识清单
- Composer 安装等
- artisan--创建模型-控制器-各种模块
- Route--路由
- Paginate--分页
- File--文件
- View--视图
- template--模版
- Model--模型
- Schema--数据表索引-外键-字段类型
- DB-基本使用-查询语句-joins-聚合--原生sql-增删改查等
- message--消息
- Validation--验证规则
- Auth-用户认证-用户权限
- Helper-数组对象-路径-字符串-urls-links等
- Session会话
- Response--回应
- Request--请求
- Redirect--重定向
- Environment--环境
- Log--日志
- URL--地址
- Event--事件
- Input--输入
- Security安全--哈希-加密解密
- Queue--监听
- Container--容器
- Config--参数设置
- Cache--缓存
- Cookie--设置-获取--删除等
- Mail--邮件
- String--字符串
- Collection--集合
- Storage--存储
- Lang--语言
- 单元测试
- 文件夹结构简介
- 第一章 laravel8运行环境的搭建(已经有了运行环境的直接跳过)