Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 7 |
|
0.00% |
0 / 5 |
CRAP | |
0.00% |
0 / 1 |
QtiTestChangeEvent | |
0.00% |
0 / 7 |
|
0.00% |
0 / 5 |
30 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
getSession | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getServiceCallId | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getNewStateDescription | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
getSessionMemento | |
0.00% |
0 / 1 |
|
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) 2015 (original work) Open Assessment Technologies SA; |
19 | * |
20 | */ |
21 | |
22 | namespace oat\taoQtiTest\models\event; |
23 | |
24 | use oat\taoTests\models\event\TestChangedEvent; |
25 | use Zend\ServiceManager\ServiceLocatorAwareTrait; |
26 | use oat\taoQtiTest\models\SessionStateService; |
27 | use Zend\ServiceManager\ServiceLocatorAwareInterface; |
28 | use oat\taoQtiTest\helpers\TestSessionMemento; |
29 | |
30 | /** |
31 | * |
32 | */ |
33 | class QtiTestChangeEvent extends TestChangedEvent implements ServiceLocatorAwareInterface |
34 | { |
35 | use ServiceLocatorAwareTrait; |
36 | |
37 | /** |
38 | * @var \taoQtiTest_helpers_TestSession |
39 | */ |
40 | protected $session; |
41 | |
42 | /** |
43 | * Object represents test session state before event |
44 | * |
45 | * @var TestSessionMemento |
46 | */ |
47 | protected $sessionMemento; |
48 | |
49 | /** |
50 | * QtiTestChangeEvent constructor. |
51 | * @param \taoQtiTest_helpers_TestSession $testSession |
52 | * @param $sessionMemento TestSessionMemento |
53 | */ |
54 | public function __construct(\taoQtiTest_helpers_TestSession $testSession, TestSessionMemento $sessionMemento) |
55 | { |
56 | $this->sessionMemento = $sessionMemento; |
57 | $this->session = $testSession; |
58 | } |
59 | |
60 | /** |
61 | * @return \taoQtiTest_helpers_TestSession |
62 | */ |
63 | public function getSession() |
64 | { |
65 | return $this->session; |
66 | } |
67 | |
68 | /** |
69 | * @return string |
70 | */ |
71 | public function getServiceCallId() |
72 | { |
73 | return $this->session->getSessionId(); |
74 | } |
75 | |
76 | public function getNewStateDescription() |
77 | { |
78 | $sessionService = $this->getServiceLocator()->get(SessionStateService::SERVICE_ID); |
79 | return $sessionService->getSessionDescription($this->session); |
80 | } |
81 | |
82 | /** |
83 | * @return TestSessionMemento |
84 | */ |
85 | public function getSessionMemento() |
86 | { |
87 | return $this->sessionMemento; |
88 | } |
89 | } |