wiki.techinc.nl/tests/phpunit/includes/diff/FakeDiffOp.php
addshore 3d1fba6e72 Add tests for ArrayDiffFormatter and DiffOp
This change also adds some tested getters to
the DiffOp class to improve testability of the class

Change-Id: I26eafd791b9892f565a18d0502474ef9c24f9a29
2014-02-26 22:53:05 +01:00

11 lines
154 B
PHP

<?php
/**
* Class FakeDiffOp used to test abstract class DiffOp
*/
class FakeDiffOp extends DiffOp {
public function reverse() {
return null;
}
}