public function testCreate()
 {
     $this->containerMock->expects($this->once())->method('make')->with(\stdClass::class, [])->willReturn($this->objectMock);
     $this->assertInstanceOf(\stdClass::class, $this->model->create(\stdClass::class, []));
 }