I am working on an existing Open-Source Android Java App. I have removed the encryption/decryption functions of the App. Now i am using other encryption and decryption functions which are created in a project of my university. I want to compare the performance of my (for example) encryption function with the performance of the encryption function used by the app.
Now i am thinking about the best way to do this. The only idea i have right now is, to do it programmatically and count the time between starting end ending of each function.
I'm looking for a better way to test the performance.
Thanks