diff --git a/src/Order/Tests/BillpayerTest.php b/src/Order/Tests/BillpayerTest.php index 612af22b..97c4fec1 100644 --- a/src/Order/Tests/BillpayerTest.php +++ b/src/Order/Tests/BillpayerTest.php @@ -14,11 +14,26 @@ namespace Vanilo\Order\Tests; +use Konekt\Address\Models\Country; use Vanilo\Order\Models\Billpayer; use Vanilo\Order\Tests\Dummies\Address; class BillpayerTest extends TestCase { + public function setUp(): void + { + parent::setUp(); + + Country::createOrFirst([ + 'id' => 'NL', + ], [ + 'name' => 'Netherlands', + 'phonecode' => 31, + 'is_eu_member' => 1 + ]); + } + + /** @test */ public function it_returns_proper_bool_types_when_the_model_is_empty() {