How to group / reuse / mix custom assertions classes for phpunit testcases?
I am aware that one can add custom assertion by extending the default TestCase, e.g. I added assertions to check that an array may only contain one specific value: <?php namespace KopernikusTimrReportManager; use PHPUnitFrameworkTestCase; abstract class ArrayContainsValueTestCase extends TestCase {…