TextHelperTest   A
last analyzed

Complexity

Total Complexity 13

Size/Duplication

Total Lines 51
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 13
c 1
b 0
f 1
dl 0
loc 51
rs 10

13 Methods

Rating   Name   Duplication   Size   Complexity  
A testStick() 0 1 1
A testSubstrings() 0 1 1
A testCapitalize() 0 1 1
A testConvertCharset() 0 1 1
A testTruncate() 0 1 1
A testSanitize() 0 1 1
A testSlug() 0 1 1
A testSplitFullName() 0 1 1
A testPurge() 0 1 1
A testUnversion() 0 1 1
A testReplaceAllButFirst() 0 1 1
A testFormatNumber() 0 1 1
A testBuildUrl() 0 1 1
1
<?php
2
3
/**
4
 * @file TextHelperTest.php
5
 * @brief This file contains the ${CLASS_NAME} class.
6
 * @details
7
 * @author Filippo F. Fadda
8
 */
9
10
11
use ToolBag\Helper\TextHelper;
12
13
class TextHelperTest extends PHPUnit_Framework_TestCase {
14
15
  public function testReplaceAllButFirst() {
16
17
  }
18
19
  public function testSanitize() {
20
21
  }
22
23
  public function testPurge() {
24
25
  }
26
27
  public function testConvertCharset() {
28
29
  }
30
31
  public function testSplitFullName() {
32
33
  }
34
35
  public function testSubstrings() {
36
37
  }
38
39
  public function testCapitalize() {
40
41
  }
42
43
  public function testStick() {
44
45
  }
46
47
  public function testSlug() {
48
49
  }
50
51
  public function testUnversion() {
52
53
  }
54
55
  public function testTruncate() {
56
57
  }
58
59
  public function testBuildUrl() {
60
61
  }
62
63
  public function testFormatNumber() {
64
65
  }
66
}
67