Completed
Pull Request — master (#271)
by
unknown
03:12
created

EntriesListTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 3

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A testShouldGetEntriesListUnfiltered() 0 8 1
1
<?php
2
3
namespace Moip\Tests\Resource;
4
5
use Moip\Tests\TestCase;
6
7
class EntriesListTest extends TestCase
8
{
9
    public function testShouldGetEntriesListUnfiltered()
10
    {
11
        $this->mockHttpSession($this->body_entries_list);
12
13
        $entries = $this->moip->entries()->getList();
14
15
        $this->assertNotNull($entries->getEntries());
16
    }
17
}