Tests for zero decimals
This commit is contained in:
parent
995b16d7e3
commit
0a8f44b284
1 changed files with 17 additions and 0 deletions
|
|
@ -37,5 +37,22 @@ class ZeroDecimalTest extends TestCase
|
|||
|
||||
}
|
||||
|
||||
|
||||
public function testCurrencyMiss()
|
||||
{
|
||||
|
||||
$this->assertFalse(in_array("USD", $this->currencies));
|
||||
|
||||
}
|
||||
|
||||
public function testCurrencyNotexist()
|
||||
{
|
||||
|
||||
$this->assertFalse(in_array("USDddd", $this->currencies));
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue