void RegisterProcessor(Integration::Processor& processor, bool postProcessor = false);
void UnregisterProcessor(Integration::Processor& processor, bool postProcessor = false);
+ void RegisterProcessorOnce(Integration::Processor& processor, bool postProcessor = false);
+ void UnregisterProcessorOnce(Integration::Processor& processor, bool postProcessor = false);
void SetApplication(Dali::TestApplication& testApplication);
core.UnregisterProcessor(processor, postProcessor);
}
+void Adaptor::RegisterProcessorOnce(Integration::Processor& processor, bool postProcessor)
+{
+ Integration::Core& core = mTestApplication->GetCore();
+ tet_printf("Adaptor::RegisterProcessorOnce : %s\n", processor.GetProcessorName().data());
+ core.RegisterProcessorOnce(processor, postProcessor);
+}
+
+void Adaptor::UnregisterProcessorOnce(Integration::Processor& processor, bool postProcessor)
+{
+ Integration::Core& core = mTestApplication->GetCore();
+ tet_printf("Adaptor::UnregisterProcessorOnce : %s\n", processor.GetProcessorName().data());
+ core.UnregisterProcessorOnce(processor, postProcessor);
+}
+
void Adaptor::SetApplication(Dali::TestApplication& testApplication)
{
mTestApplication = &testApplication;
mImpl->UnregisterProcessor(processor, postProcessor);
}
+void Adaptor::RegisterProcessorOnce(Integration::Processor& processor, bool postProcessor)
+{
+ mImpl->RegisterProcessorOnce(processor, postProcessor);
+}
+
+void Adaptor::UnregisterProcessorOnce(Integration::Processor& processor, bool postProcessor)
+{
+ mImpl->UnregisterProcessorOnce(processor, postProcessor);
+}
+
} // namespace Dali