for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
require_once('BaseTester.php');
/** @group Item */
class ItemTest extends BaseTester
{
/** @test */
public function it_gets_items_for_an_app_by_user_id()
$inventory = $this->steamClient->item()->GetPlayerItems($this->appId, $this->id64);
item()
$appId
This check looks for function calls that miss required arguments.
$this->assertCount(3, $inventory->items);
$item = $inventory->items->first();
$this->checkItemProperties($item);
}