测试
// tests/Feature/AssignmentTest.php
public function test_post_creates_new_assignment()
{
$this->post('/assignments', [
'title' => 'My great assignment',
]);
$this->assertDatabaseHas('assignments', [
'title' => 'My great assignment',
]);
}// AssignmentTest.php
public function test_list_page_shows_all_assignments()
{
$assignment = Assignment::create([
'title' => 'My great assignment',
]);
$this->get('/assignments')
->assertSee('My great assignment');
}Last updated