Skip to content
Snippets Groups Projects

Automated Project Update Bot fixes

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