With a quick search over stackoverflow was not able to find anything so here is my question.
I am trying to write down the testing strategy for a application where two applications sync with each other every day to keep a huge amount of data in sync.
As its a huge amount of data I don't really want to cross check everything. But just want to do a random check every time a data sync happens. What should be the strategy here for such system?
I am thinking of this 2 approach. 1) Get a count of all data and cross check both are same 2) Choose a random 5 data entry and verify that their proprty are in sync.
Any suggestion would be great.