GCC Code Coverage Report


Directory: ./
File: tasks/marin_l_cnt_mismat_chrt_in_two_str/seq/include/ops_seq.hpp
Date: 2026-01-27 01:59:34
Exec Total Coverage
Lines: 0 1 0.0%
Functions: 0 0 -%
Branches: 0 0 -%

Line Branch Exec Source
1 #pragma once
2
3 #include "marin_l_cnt_mismat_chrt_in_two_str/common/include/common.hpp"
4 #include "task/include/task.hpp"
5
6 namespace marin_l_cnt_mismat_chrt_in_two_str {
7
8 class MarinLCntMismatChrtInTwoStrSEQ : public BaseTask {
9 public:
10 static constexpr ppc::task::TypeOfTask GetStaticTypeOfTask() {
11 return ppc::task::TypeOfTask::kSEQ;
12 }
13 explicit MarinLCntMismatChrtInTwoStrSEQ(const InType &in);
14
15 private:
16 bool ValidationImpl() override;
17 bool PreProcessingImpl() override;
18 bool RunImpl() override;
19 bool PostProcessingImpl() override;
20 };
21
22 } // namespace marin_l_cnt_mismat_chrt_in_two_str
23