MessageMetaTest::testClassInstanceOfModelClass()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
3
/*
4
 * This file is part of the MilioooMessageBundle package.
5
 *
6
 * (c) Michiel boeckaert <[email protected]>
7
 * This source file is subject to the MIT license that is bundled
8
 * with this source code in the file LICENSE.
9
 */
10
11
namespace Miliooo\Messaging\Tests\TestHelpers\Model;
12
13
use Miliooo\Messaging\TestHelpers\Model\MessageMeta;
14
15
/**
16
 * The Test file for Miliooo\Messaging\TestHelpers\Model\MessageMeta.
17
 *
18
 * @author Michiel Boeckaert <[email protected]>
19
 */
20
class MessageMetaTest extends \PHPUnit_Framework_TestCase
21
{
22
    public function testClassInstanceOfModelClass()
23
    {
24
        $class = new MessageMeta;
25
        $this->assertInstanceOf('Miliooo\Messaging\Model\MessageMeta', $class);
26
    }
27
}
28