Currently i am writing integration test for a several ecommerce shops via a Junit.
What I want to do is execute all test cases despite any failures occurring during, then report all failures at the end.
Are there any frameworks, testCaseRunners e.t.c i can leverage to achieve this or will I have to manually achieve this via code i.e swapping junit assertions for simple equality checks whilst logging failures in a collection of some sort.
Hope my question is understood but I can extend my question further if clarification is needed.