ClassHelperTest   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 3
c 1
b 0
f 1
dl 0
loc 11
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A testGetClassName() 0 1 1
A testGetClass() 0 1 1
A testGetClassRoot() 0 1 1
1
<?php
2
3
/**
4
 * @file ClassHelperTest.php
5
 * @brief This file contains the ${CLASS_NAME} class.
6
 * @details
7
 * @author Filippo F. Fadda
8
 */
9
10
11
use ToolBag\Helper\ClassHelper;
12
13
class ClassHelperTest extends PHPUnit_Framework_TestCase {
14
15
  public function testGetClassRoot() {
16
17
  }
18
19
  public function testGetClass() {
20
21
  }
22
23
  public function testGetClassName() {
24
25
  }
26
}
27