testCase with same name but different testSuite
Status: Beta
Brought to you by:
birdiez
If you create two test case with same name in two different file and different testSuite, only one is executed because the macro create one class.
Solution is to define a new macro with composite class name <testSuite><testCase>.
Solution (inside util--.h):
#define testCaseExt(thisCase, upperSuite) \
testCasePrefix(upperSuite##thisCase, upperSuite, added_)