@@ -108,33 +108,33 @@ class Task {
108
108
// / @brief Validates input data and task attributes before execution.
109
109
// / @return True if validation is successful.
110
110
virtual bool Validation () final {
111
- InternalOrderTest (PPC_FUNC_NAME );
111
+ InternalOrderTest (ppc::util::FuncName () );
112
112
return ValidationImpl ();
113
113
}
114
114
115
115
// / @brief Performs preprocessing on the input data.
116
116
// / @return True if preprocessing is successful.
117
117
virtual bool PreProcessing () final {
118
- InternalOrderTest (PPC_FUNC_NAME );
118
+ InternalOrderTest (ppc::util::FuncName () );
119
119
if (state_of_testing_ == StateOfTesting::kFunc ) {
120
- InternalTimeTest (PPC_FUNC_NAME );
120
+ InternalTimeTest (ppc::util::FuncName () );
121
121
}
122
122
return PreProcessingImpl ();
123
123
}
124
124
125
125
// / @brief Executes the main logic of the task.
126
126
// / @return True if execution is successful.
127
127
virtual bool Run () final {
128
- InternalOrderTest (PPC_FUNC_NAME );
128
+ InternalOrderTest (ppc::util::FuncName () );
129
129
return RunImpl ();
130
130
}
131
131
132
132
// / @brief Performs postprocessing on the output data.
133
133
// / @return True if postprocessing is successful.
134
134
virtual bool PostProcessing () final {
135
- InternalOrderTest (PPC_FUNC_NAME );
135
+ InternalOrderTest (ppc::util::FuncName () );
136
136
if (state_of_testing_ == StateOfTesting::kFunc ) {
137
- InternalTimeTest (PPC_FUNC_NAME );
137
+ InternalTimeTest (ppc::util::FuncName () );
138
138
}
139
139
return PostProcessingImpl ();
140
140
}
0 commit comments