Domain\Student\StudentTest::test_create_student_with_classroom PHP 메소드

test_create_student_with_classroom() 공개 메소드

    public function test_create_student_with_classroom()
    {
        $classroom = factory(Classroom::class)->create();
        $student = factory(Student::class)->create();
        $student->classrooms()->attach($classroom);
        $this->assertInstanceOf(Classroom::class, $student->classrooms->first());
    }