Domain\Lesson\LessonTest::test_create_lesson_with_value PHP 메소드

test_create_lesson_with_value() 공개 메소드

    public function test_create_lesson_with_value()
    {
        $lesson = factory(Lesson::class)->create(['name' => 'lição 1', 'description' => 'descrição']);
        $this->assertInstanceOf(Lesson::class, $lesson);
        $this->seeInDatabase('lessons', ['name' => 'lição 1', 'description' => 'descrição']);
    }