build is failing
dbu opened this issue · 2 comments
the build of the testing itself is failing. not sure if its a problem for bundles using it or just an invalid test...
It doesn't affect the other bundle's tests.
It's because of this: sebastianbergmann/phpunit-mock-objects#137 staticExpects
no longer exists in PHPunit 3.9, and Travis recently updated to PHPunit 4. @sebastianbergmann removed the feature without adding an alternative, or in his own words "The proposed alternative is to not use static methods".
This is quite a problem since we use it to mock KernelTestCase::createKernel
: https://github.com/symfony-cmf/Testing/blob/master/tests/Functional/BaseTestCaseTest.php#L57-59 There is no way we can change that...
Will be gone with #52. Not the best solution but doable.