Completed
Pull Request — master (#1)
by Gaël
01:15
created

NewsletterListTest   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Importance

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

3 Methods

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 6 1
A it_can_determine_the_name_of_the_list() 0 4 1
A it_can_determine_the_id_of_the_list() 0 4 1
1
<?php
2
3
namespace DansMaCulotte\Newsletter\Test;
4
5
use PHPUnit\Framework\TestCase;
0 ignored issues
show
Bug introduced by
This use statement conflicts with another class in this namespace, DansMaCulotte\Newsletter\Test\TestCase.

Let’s assume that you have a directory layout like this:

.
|-- OtherDir
|   |-- Bar.php
|   `-- Foo.php
`-- SomeDir
    `-- Foo.php

and let’s assume the following content of Bar.php:

// Bar.php
namespace OtherDir;

use SomeDir\Foo; // This now conflicts the class OtherDir\Foo

If both files OtherDir/Foo.php and SomeDir/Foo.php are loaded in the same runtime, you will see a PHP error such as the following:

PHP Fatal error:  Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.php

However, as OtherDir/Foo.php does not necessarily have to be loaded and the error is only triggered if it is loaded before OtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias:

// Bar.php
namespace OtherDir;

use SomeDir\Foo as SomeDirFoo; // There is no conflict anymore.
Loading history...
6
use DansMaCulotte\Newsletter\NewsletterList;
7
8
class NewsletterListTest extends TestCase
9
{
10
    protected $newsletterList;
11
12
    public function setUp() : void
13
    {
14
        parent::setUp();
15
16
        $this->newsletterList = new NewsletterList('subscriber', ['id' => 'abc123']);
17
    }
18
19
    /** @test */
20
    public function it_can_determine_the_name_of_the_list()
21
    {
22
        $this->assertSame('subscriber', $this->newsletterList->getName());
23
    }
24
25
    /** @test */
26
    public function it_can_determine_the_id_of_the_list()
27
    {
28
        $this->assertSame('abc123', $this->newsletterList->getId());
29
    }
30
}
31