GCC Code Coverage Report


Directory: ./
File: tasks/redkina_a_ruler/common/include/common.hpp
Date: 2026-01-27 01:59:34
Exec Total Coverage
Lines: 1 1 100.0%
Functions: 0 0 -%
Branches: 1 2 50.0%

Line Branch Exec Source
1 #pragma once
2
3 #include <tuple>
4 #include <vector>
5
6 #include "task/include/task.hpp"
7
8 namespace redkina_a_ruler {
9
10
1/2
✓ Branch 1 taken 300 times.
✗ Branch 2 not taken.
23640 struct RulerMessage {
11 int start{};
12 int end{};
13 std::vector<int> data;
14 };
15
16 using InType = RulerMessage;
17 using OutType = std::vector<int>;
18 using TestType = std::tuple<int, RulerMessage>;
19 using BaseTask = ppc::task::Task<InType, OutType>;
20
21 } // namespace redkina_a_ruler
22