MilioooMessagingEventsTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 8
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A testConstants() 0 4 1
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\Event;
12
13
use Miliooo\Messaging\Event\MilioooMessagingEvents;
14
15
/**
16
 * Test file for MilioooMessagingEvents
17
 *
18
 * @author Michiel Boeckaert <[email protected]>
19
 */
20
class MilioooMessagingEventsTest extends \PHPUnit_Framework_TestCase
21
{
22
23
    public function testConstants()
24
    {
25
        $this->assertEquals('miliooo_messaging.read_status_changed', MilioooMessagingEvents::READ_STATUS_CHANGED);
26
    }
27
}
28