Completed
Push — master ( bbd63b...04134d )
by Alexander
02:30
created

XmlEqualityServiceTest::testWrongAttribute()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: horat1us
5
 * Date: 5/11/17
6
 * Time: 6:22 PM
7
 */
8
9
namespace Horat1us\Tests;
10
11
12
use Horat1us\Services\XmlEqualityService;
13
14
class XmlEqualityServiceTest extends \PHPUnit_Framework_TestCase
15
{
16
    public function testWrongAttribute()
17
    {
18
        $service = new XmlEqualityService();
19
20
        $this->assertFalse($service->compare());
21
    }
22
}