Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
AbstractGroupRule
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
12
0.00% covered (danger)
0.00%
0 / 1
 getGroupValues
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
12
1<?php
2
3/*
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; under version 2
8 * of the License (non-upgradable).
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18 *
19 * Copyright (c) 2021  (original work) Open Assessment Technologies SA;
20 */
21
22declare(strict_types=1);
23
24namespace oat\taoQtiItem\model\import\Validator\Rule;
25
26use oat\oatbox\service\ConfigurableService;
27
28abstract class AbstractGroupRule extends ConfigurableService
29{
30    protected function getGroupValues(array $context, string $groupName): array
31    {
32        $occurrences = [];
33
34        foreach ($context as $headerName => $cellValue) {
35            if (preg_match('/\b(' . $groupName . ')\b/', (string)$headerName) === 1) {
36                $occurrences[$headerName] = $cellValue;
37            }
38        }
39
40        return $occurrences;
41    }
42}