Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 3 |
|
0.00% |
0 / 3 |
CRAP | |
0.00% |
0 / 1 |
| TestImportedEvent | |
0.00% |
0 / 3 |
|
0.00% |
0 / 3 |
12 | |
0.00% |
0 / 1 |
| __construct | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| getName | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| getTestUri | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace oat\taoQtiTest\models\classes\event; |
| 4 | |
| 5 | use oat\oatbox\event\Event; |
| 6 | |
| 7 | class TestImportedEvent implements Event |
| 8 | { |
| 9 | private string $testUri; |
| 10 | |
| 11 | public function __construct(string $testUri) |
| 12 | { |
| 13 | $this->testUri = $testUri; |
| 14 | } |
| 15 | |
| 16 | public function getName(): string |
| 17 | { |
| 18 | return __CLASS__; |
| 19 | } |
| 20 | |
| 21 | public function getTestUri(): string |
| 22 | { |
| 23 | return $this->testUri; |
| 24 | } |
| 25 | } |