Completed
Push — develop ( bff7e0...43c31e )
by Ben
02:05
created

StringUtilsTest   A

Complexity

Total Complexity 6

Size/Duplication

Total Lines 39
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Importance

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

6 Methods

Rating   Name   Duplication   Size   Complexity  
A testStartsWithCharacter() 0 4 1
A testStartsWithSnippet() 0 4 1
A testDoesNotStartWith() 0 6 1
A testEndsWithCharacter() 0 4 1
A testEndsWithSnippet() 0 4 1
A testDoesNotEndWith() 0 6 1
1
<?php
2
3
use GroupByInc\API\Util\StringUtils;
4
5
class StringUtilsTest extends PHPUnit_Framework_TestCase
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
6
{
7
    private $string = "this is a string";
8
9
    public function testStartsWithCharacter()
10
    {
11
        $this->assertTrue(StringUtils::startsWith($this->string, "t"));
12
    }
13
14
    public function testStartsWithSnippet()
15
    {
16
        $this->assertTrue(StringUtils::startsWith($this->string, "this is"));
17
    }
18
19
    public function testDoesNotStartWith()
20
    {
21
        $this->assertFalse(StringUtils::startsWith($this->string, "jellybean"));
22
        $this->assertFalse(StringUtils::startsWith($this->string, "his"));
23
        $this->assertFalse(StringUtils::startsWith($this->string, "tag"));
24
    }
25
26
    public function testEndsWithCharacter()
27
    {
28
        $this->assertTrue(StringUtils::endsWith($this->string, "g"));
29
    }
30
31
    public function testEndsWithSnippet()
32
    {
33
        $this->assertTrue(StringUtils::endsWith($this->string, "a string"));
34
    }
35
36
    public function testDoesNotEndWith()
37
    {
38
        $this->assertFalse(StringUtils::endsWith($this->string, "nonsense"));
39
        $this->assertFalse(StringUtils::endsWith($this->string, "strin"));
40
        $this->assertFalse(StringUtils::endsWith($this->string, "strung"));
41
    }
42
43
}
44