GCC Code Coverage Report


Directory: ./
File: tasks/kutergin_v_reduce/common/include/common.hpp
Date: 2026-01-10 02:40:41
Exec Total Coverage
Lines: 1 1 100.0%
Functions: 0 0 -%
Branches: 4 5 80.0%

Line Branch Exec Source
1 #pragma once
2
3 #include <string>
4 #include <tuple>
5 #include <vector>
6
7 #include "task/include/task.hpp"
8
9 namespace kutergin_v_reduce {
10
11
4/5
✓ Branch 1 taken 40 times.
✓ Branch 2 taken 32 times.
✓ Branch 3 taken 8 times.
✗ Branch 5 not taken.
✓ Branch 6 taken 40 times.
160 struct InputData {
12 std::vector<int> data;
13 int root = 0; // root по умолчанию
14 };
15
16 using InType = InputData;
17 using OutType = int;
18 using BaseTask = ppc::task::Task<InType, OutType>;
19 using TestType = std::tuple<int, int, std::string>;
20
21 } // namespace kutergin_v_reduce
22