IntegerTest::testIntegerType()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 7
rs 9.4285
cc 1
eloc 4
nc 1
nop 0
1
<?php
2
/**
3
 * Copyright (c) 2014-2016 Ryan Parman.
4
 *
5
 * Permission is hereby granted, free of charge, to any person obtaining a copy
6
 * of this software and associated documentation files (the "Software"), to deal
7
 * in the Software without restriction, including without limitation the rights
8
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
 * copies of the Software, and to permit persons to whom the Software is
10
 * furnished to do so, subject to the following conditions:
11
 *
12
 * The above copyright notice and this permission notice shall be included in
13
 * all copies or substantial portions of the Software.
14
 *
15
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
 * THE SOFTWARE.
22
 *
23
 * http://opensource.org/licenses/MIT
24
 */
25
26
namespace Skyzyx\Tests\StrongTypes;
27
28
use Skyzyx\StrongTypes\IntegerType;
29
30
class IntegerTest extends \PHPUnit_Framework_TestCase
31
{
32
    public function testIntegerType()
33
    {
34
        $type = new IntegerType(123);
35
36
        $this->assertEquals('Skyzyx\StrongTypes\IntegerType', get_class($type));
37
        $this->assertEquals(123, $type->getValue());
38
    }
39
40
    /**
41
     * @expectedException        UnexpectedValueException
42
     * @expectedExceptionMessage The Skyzyx\StrongTypes\IntegerType class expects a value of type integer. Received a
43
     *                           value of type string instead.
44
     */
45
    public function testIntegerExceptionString()
46
    {
47
        $this->assertEquals('', ''); // Shut-up, test runner
48
        new IntegerType('abc');
49
    }
50
51
    /**
52
     * @expectedException        UnexpectedValueException
53
     * @expectedExceptionMessage The Skyzyx\StrongTypes\IntegerType class expects a value of type integer. Received a
54
     *                           value of type float instead.
55
     */
56
    public function testIntegerExceptionFloat()
57
    {
58
        $this->assertEquals('', ''); // Shut-up, test runner
59
        new IntegerType(1.23);
60
    }
61
62
    public function testIntegerToString()
63
    {
64
        $this->assertEquals('12345', (string) new IntegerType(12345));
65
        $this->assertEquals('9223372036854775807', (string) new IntegerType(\PHP_INT_MAX));
66
    }
67
}
68