GCC Code Coverage Report


Directory: ./
File: tasks/kopilov_d_ring_2/seq/src/ops_seq.cpp
Date: 2026-01-27 01:59:34
Exec Total Coverage
Lines: 11 11 100.0%
Functions: 5 5 100.0%
Branches: 2 4 50.0%

Line Branch Exec Source
1 #include "kopilov_d_ring_2/seq/include/ops_seq.hpp"
2
3 #include "kopilov_d_ring_2/common/include/common.hpp"
4
5 namespace kopilov_d_ring_2 {
6
7
1/2
✓ Branch 1 taken 32 times.
✗ Branch 2 not taken.
32 KopilovDRingSEQ::KopilovDRingSEQ(const InType &in) {
8 SetTypeOfTask(GetStaticTypeOfTask());
9 GetInput() = in;
10 32 }
11
12 32 bool KopilovDRingSEQ::ValidationImpl() {
13 32 return true;
14 }
15
16
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 32 times.
32 bool KopilovDRingSEQ::PreProcessingImpl() {
17 GetOutput().data.clear();
18 32 return true;
19 }
20
21 32 bool KopilovDRingSEQ::RunImpl() {
22 32 GetOutput().data = GetInput().data;
23 32 return true;
24 }
25
26 32 bool KopilovDRingSEQ::PostProcessingImpl() {
27 32 return true;
28 }
29
30 } // namespace kopilov_d_ring_2
31