1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/tests/Unit/ZeroDecimalTest.php

39 lines
916 B
PHP
Raw Normal View History

2021-12-21 10:27:51 +01:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
*
2022-06-08 06:25:44 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2021-12-21 10:27:51 +01:00
*/
2021-12-21 10:27:51 +01:00
namespace Tests\Unit;
use Tests\TestCase;
class ZeroDecimalTest extends TestCase
{
public array $currencies = ['BIF', 'CLP', 'DJF', 'GNF', 'JPY', 'KMF', 'KRW', 'MGA', 'PYG', 'RWF', 'UGX', 'VND', 'VUV', 'XAF', 'XOF', 'XPF'];
2021-12-21 10:27:51 +01:00
protected function setUp() :void
2021-12-21 10:27:51 +01:00
{
}
public function testCurrencyHit()
{
$this->assertTrue(in_array('KRW', $this->currencies));
2021-12-21 10:27:51 +01:00
}
2021-12-21 10:30:44 +01:00
public function testCurrencyMiss()
{
$this->assertFalse(in_array('USD', $this->currencies));
2021-12-21 10:30:44 +01:00
}
public function testCurrencyNotexist()
{
$this->assertFalse(in_array('USDddd', $this->currencies));
2021-12-21 10:30:44 +01:00
}
2021-12-21 10:27:51 +01:00
}