GCC Code Coverage Report


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

Line Branch Exec Source
1 #pragma once
2
3 #include <cstdint>
4 #include <string>
5 #include <tuple>
6 #include <vector>
7
8 #include "task/include/task.hpp"
9
10 namespace smyshlaev_a_gauss_filt {
11
5/9
✓ Branch 0 taken 152 times.
✓ Branch 1 taken 8 times.
✓ Branch 3 taken 144 times.
✗ Branch 4 not taken.
✓ Branch 5 taken 80 times.
✓ Branch 6 taken 8 times.
✗ Branch 7 not taken.
✗ Branch 8 not taken.
✗ Branch 9 not taken.
712 struct ImageType {
12 int width = 0;
13 int height = 0;
14 int channels = 0;
15 std::vector<uint8_t> data;
16 };
17
18 using InType = ImageType;
19 using OutType = ImageType;
20 using TestType = std::tuple<int, int, int, std::vector<uint8_t>, std::string>;
21 using BaseTask = ppc::task::Task<InType, OutType>;
22
23 } // namespace smyshlaev_a_gauss_filt
24