data=$inventoryService->conditionPortStock('','',$this->ownerId); $this->assertNull($this->data); } function testConditionSearchCanSearchData(){ $inventoryService=new InventoryAccountService(); $this->ownerId=3; $this->data=$inventoryService->conditionPortStock('2020-08-19','2020-08-19',$this->ownerId); $this->assertNotEmpty($this->data); } }