blob: 837e4d07af3a22a8d25f973d1d87fcaa2b3ff3a0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
<?php
namespace CommerceGuys\Intl\Tests\Currency;
use CommerceGuys\Intl\Currency\Currency;
/**
* @coversDefaultClass \CommerceGuys\Intl\Currency\Currency
*/
class CurrencyTest extends \PHPUnit_Framework_TestCase
{
/**
* @var Currency
*/
protected $currency;
public function setUp()
{
$this->currency = new Currency();
}
/**
* @covers ::getCurrencyCode
* @covers ::setCurrencyCode
* @covers ::__toString
*/
public function testCurrencyCode()
{
$this->currency->setCurrencyCode('USD');
$this->assertEquals('USD', $this->currency->getCurrencyCode());
$this->assertEquals('USD', (string) $this->currency);
}
/**
* @covers ::getName
* @covers ::setName
*/
public function testName()
{
$this->currency->setName('US Dollar');
$this->assertEquals('US Dollar', $this->currency->getName());
}
/**
* @covers ::getNumericCode
* @covers ::setNumericCode
*/
public function testNumericCode()
{
$this->currency->setNumericCode('840');
$this->assertEquals('840', $this->currency->getNumericCode());
}
/**
* @covers ::getFractionDigits
* @covers ::setFractionDigits
*/
public function testFractionDigits()
{
$this->currency->setFractionDigits('2');
$this->assertEquals('2', $this->currency->getFractionDigits());
}
/**
* @covers ::getSymbol
* @covers ::setSymbol
*/
public function testSymbol()
{
$this->currency->setSymbol('$');
$this->assertEquals('$', $this->currency->getSymbol());
}
/**
* @covers ::getLocale
* @covers ::setLocale
*/
public function testLocale()
{
$this->currency->setLocale('en');
$this->assertEquals('en', $this->currency->getLocale());
}
}
|