domain\classroom\ClassroomTest::test_create_classroom_with_students PHP Method

test_create_classroom_with_students() public method

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