Guest User

Untitled

a guest
Mar 22nd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2. class ModelTest extends TestCase
  3. {
  4. public function getModelMock ()
  5. {
  6. // The key is the null value to setMethod (default is [] which mocks all methods).
  7. $model = $this->getMockBuilder(FieldPaletteModel::class)->setMethods(null)->disableOriginalConstructor()->getMock();
  8. }
  9. }
Add Comment
Please, Sign In to add comment