@@ -108,33 +108,33 @@ class Task {
108108 // / @brief Validates input data and task attributes before execution.
109109 // / @return True if validation is successful.
110110 virtual bool Validation () final {
111- InternalOrderTest (PPC_FUNC_NAME );
111+ InternalOrderTest (ppc::util::FuncName () );
112112 return ValidationImpl ();
113113 }
114114
115115 // / @brief Performs preprocessing on the input data.
116116 // / @return True if preprocessing is successful.
117117 virtual bool PreProcessing () final {
118- InternalOrderTest (PPC_FUNC_NAME );
118+ InternalOrderTest (ppc::util::FuncName () );
119119 if (state_of_testing_ == StateOfTesting::kFunc ) {
120- InternalTimeTest (PPC_FUNC_NAME );
120+ InternalTimeTest (ppc::util::FuncName () );
121121 }
122122 return PreProcessingImpl ();
123123 }
124124
125125 // / @brief Executes the main logic of the task.
126126 // / @return True if execution is successful.
127127 virtual bool Run () final {
128- InternalOrderTest (PPC_FUNC_NAME );
128+ InternalOrderTest (ppc::util::FuncName () );
129129 return RunImpl ();
130130 }
131131
132132 // / @brief Performs postprocessing on the output data.
133133 // / @return True if postprocessing is successful.
134134 virtual bool PostProcessing () final {
135- InternalOrderTest (PPC_FUNC_NAME );
135+ InternalOrderTest (ppc::util::FuncName () );
136136 if (state_of_testing_ == StateOfTesting::kFunc ) {
137- InternalTimeTest (PPC_FUNC_NAME );
137+ InternalTimeTest (ppc::util::FuncName () );
138138 }
139139 return PostProcessingImpl ();
140140 }
0 commit comments