Skip to content
Snippets Groups Projects

Automated Project Update Bot fixes

1 file
+ 1
5
Compare changes
  • Side-by-side
  • Inline
@@ -16,11 +16,7 @@ class UliCustomWorkflowTest extends TestCase {
* Smoke test.
*/
public function testSmoke() {
$object = $this->getMockBuilder(UliCustomWorkflow::class)
// NULL = no methods are mocked; otherwise list the methods here.
->setMethods(NULL)
->disableOriginalConstructor()
->getMock();
$object = $this->createMock(UliCustomWorkflow::class);
$this->assertTrue(is_object($object));
}
Loading