Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
45.45% |
5 / 11 |
|
14.29% |
1 / 7 |
CRAP | |
0.00% |
0 / 1 |
DeliveryExecutionResultsRecalculated | |
45.45% |
5 / 11 |
|
14.29% |
1 / 7 |
14.95 | |
0.00% |
0 / 1 |
__construct | |
100.00% |
5 / 5 |
|
100.00% |
1 / 1 |
1 | |||
getDeliveryExecution | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getName | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getTotalScore | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getTotalMaxScore | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
isFullyGraded | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getTimestamp | |
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) 2021-2023 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT); |
19 | * |
20 | */ |
21 | |
22 | declare(strict_types=1); |
23 | |
24 | namespace oat\taoResultServer\models\Events; |
25 | |
26 | use oat\oatbox\event\Event; |
27 | use oat\taoDelivery\model\execution\DeliveryExecutionInterface; |
28 | |
29 | class DeliveryExecutionResultsRecalculated implements Event |
30 | { |
31 | private DeliveryExecutionInterface $deliveryExecution; |
32 | private ?float $totalScore; |
33 | private ?float $totalMaxScore; |
34 | private bool $isFullyGraded; |
35 | private ?string $timestamp; |
36 | |
37 | public function __construct( |
38 | DeliveryExecutionInterface $deliveryExecution, |
39 | ?float $totalScore, |
40 | ?float $totalMaxScore, |
41 | bool $isFullyGraded, |
42 | ?string $timestamp |
43 | ) { |
44 | $this->deliveryExecution = $deliveryExecution; |
45 | $this->totalScore = $totalScore; |
46 | $this->totalMaxScore = $totalMaxScore; |
47 | $this->isFullyGraded = $isFullyGraded; |
48 | $this->timestamp = $timestamp; |
49 | } |
50 | |
51 | public function getDeliveryExecution(): DeliveryExecutionInterface |
52 | { |
53 | return $this->deliveryExecution; |
54 | } |
55 | |
56 | public function getName(): string |
57 | { |
58 | return self::class; |
59 | } |
60 | |
61 | public function getTotalScore(): ?float |
62 | { |
63 | return $this->totalScore; |
64 | } |
65 | |
66 | public function getTotalMaxScore(): ?float |
67 | { |
68 | return $this->totalMaxScore; |
69 | } |
70 | |
71 | public function isFullyGraded(): bool |
72 | { |
73 | return $this->isFullyGraded; |
74 | } |
75 | |
76 | public function getTimestamp(): ?string |
77 | { |
78 | return $this->timestamp; |
79 | } |
80 | } |