for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Xklusive\BattlenetApi\Test;
use Xklusive\BattlenetApi\Test\TestCase;
use Illuminate\Support\Collection;
class DemoTest extends TestCase
{
protected $wow;
public function setUp()
parent::setUp();
$this->wow = app(\Xklusive\BattlenetApi\Services\WowService::class);
}
public function testCallSuccess()
$this->assertInstanceOf(Collection::class, $this->wow->getAchievement(2144));