Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 7 |
|
0.00% |
0 / 7 |
CRAP | |
0.00% |
0 / 1 |
RunnerServiceContext | |
0.00% |
0 / 7 |
|
0.00% |
0 / 7 |
56 | |
0.00% |
0 / 1 |
getTestConfig | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setTestConfig | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getTestSession | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setTestSession | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setServiceManager | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getServiceManager | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
init | |
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) 2016 (original work) Open Assessment Technologies SA ; |
19 | */ |
20 | |
21 | /** |
22 | * @author Jean-Sébastien Conan <jean-sebastien.conan@vesperiagroup.com> |
23 | */ |
24 | |
25 | namespace oat\taoQtiTest\models\runner; |
26 | |
27 | use oat\oatbox\service\ServiceManager; |
28 | use oat\taoQtiTest\models\runner\config\RunnerConfig; |
29 | use Zend\ServiceManager\ServiceLocatorAwareInterface; |
30 | use Zend\ServiceManager\ServiceLocatorAwareTrait; |
31 | |
32 | /** |
33 | * Class RunnerServiceContext |
34 | * |
35 | * Defines a container to store and to share runner service context |
36 | * |
37 | * @package oat\taoQtiTest\models |
38 | */ |
39 | class RunnerServiceContext implements ServiceLocatorAwareInterface |
40 | { |
41 | use ServiceLocatorAwareTrait; |
42 | |
43 | /** |
44 | * The test session |
45 | * @var mixed |
46 | */ |
47 | protected $testSession; |
48 | |
49 | /** |
50 | * The test runner config |
51 | * @var RunnerConfig |
52 | */ |
53 | protected $testConfig; |
54 | |
55 | /** |
56 | * Gets the test runner config |
57 | * @return RunnerConfig |
58 | */ |
59 | public function getTestConfig() |
60 | { |
61 | return $this->testConfig; |
62 | } |
63 | |
64 | /** |
65 | * Sets the test runner config |
66 | * |
67 | * @param RunnerConfig $testConfig |
68 | */ |
69 | public function setTestConfig(RunnerConfig $testConfig) |
70 | { |
71 | $this->testConfig = $testConfig; |
72 | } |
73 | |
74 | |
75 | /** |
76 | * Gets the test session |
77 | * @return mixed |
78 | */ |
79 | public function getTestSession() |
80 | { |
81 | return $this->testSession; |
82 | } |
83 | |
84 | /** |
85 | * Sets the test session |
86 | * @param mixed $testSession |
87 | */ |
88 | public function setTestSession($testSession) |
89 | { |
90 | $this->testSession = $testSession; |
91 | } |
92 | |
93 | /** |
94 | * Sets the service manager |
95 | * @param ServiceManager $serviceManager |
96 | * @return RunnerServiceContext |
97 | */ |
98 | public function setServiceManager(ServiceManager $serviceManager) |
99 | { |
100 | return $this->setServiceLocator($serviceManager); |
101 | } |
102 | |
103 | /** |
104 | * Gets the service manager |
105 | * @return ServiceManager |
106 | */ |
107 | public function getServiceManager() |
108 | { |
109 | return $this->getServiceLocator(); |
110 | } |
111 | |
112 | /** |
113 | * Starts the context |
114 | */ |
115 | public function init() |
116 | { |
117 | } |
118 | } |