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