Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 7
0.00% covered (danger)
0.00%
0 / 5
CRAP
0.00% covered (danger)
0.00%
0 / 1
InitializeAdaptiveSessionEvent
0.00% covered (danger)
0.00%
0 / 7
0.00% covered (danger)
0.00%
0 / 5
30
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 1
2
 getName
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getTestSession
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getCatSession
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getAssessmentSection
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2017 (original work) Open Assessment Technologies SA;
19 *
20 */
21
22namespace oat\taoQtiTest\models\event;
23
24use oat\oatbox\event\Event;
25use oat\libCat\CatSession;
26use qtism\runtime\tests\AssessmentTestSession;
27use qtism\data\AssessmentSection;
28
29/**
30 * Class InitializeAdaptiveSessionEvent
31 *
32 * This Event is thrown when an adaptive session is initialized.
33 */
34class InitializeAdaptiveSessionEvent implements Event
35{
36    /** @var AssessmentTestSession */
37    protected $testSession;
38
39    protected $catSession;
40
41    protected $assessmentSection;
42
43    /**
44     * Create a new InitializeAdaptiveSessionEvent object.
45     *
46     * @param \qtism\runtime\tests\AssessmentTestSession $testSession
47     * @param \oat\libCat\CatSession $catSession
48     * @param \qtism\data\AssessmentSection $assessmentSection The original QTI section the $catSession belongs to.
49     */
50    public function __construct(
51        AssessmentTestSession $testSession,
52        AssessmentSection $assessmentSection,
53        CatSession $catSession
54    ) {
55        $this->testSession = $testSession;
56        $this->catSession = $catSession;
57        $this->assessmentSection = $assessmentSection;
58    }
59
60    /**
61     * Get the name of the Event.
62     *
63     * @return string
64     */
65    public function getName()
66    {
67        return __CLASS__;
68    }
69
70    /**
71     * Get the AssessmementTestSession bound to this Event.
72     *
73     * @return AssessmentTestSession
74     */
75    public function getTestSession()
76    {
77        return $this->testSession;
78    }
79
80    public function getCatSession()
81    {
82        return $this->catSession;
83    }
84
85    public function getAssessmentSection()
86    {
87        return $this->assessmentSection;
88    }
89}