Closed peter279k closed 3 years ago
use Ibericode\Vat\Clients\JsonVatClient;
assertEquals
assertEquals($expected, $actual)
$this
self
assertCount
$countries
245
protected function setUp(): void
:clap: Awesome work, thank you @peter279k!
Changed log
use Ibericode\Vat\Clients\JsonVatClient;
namespace because it's declared but not used.assertEquals
assertion because the arguments order isassertEquals($expected, $actual)
.$this
andself
. Most of them use$this
and it should be consistency for them to use the$this
approach.assertCount
to assert the$countries
counts are245
.protected function setUp(): void
method.