TestCase
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 0
c 2
b 0
f 0
lcom 0
cbo 2
dl 0
loc 4
1
<?php
2
namespace Pumpkin\Database;
3
4
/**
5
 * Class TestCase
6
 * @package Pumpkin
7
 * @author Raphaël Lefebvre <[email protected]>
8
 */
9
abstract class TestCase extends \PHPUnit_Extensions_Database_TestCase
0 ignored issues
show
Coding Style introduced by
TestCase does not seem to conform to the naming convention (^Abstract|Factory$).

This check examines a number of code elements and verifies that they conform to the given naming conventions.

You can set conventions for local variables, abstract classes, utility classes, constant, properties, methods, parameters, interfaces, classes, exceptions and special methods.

Loading history...
10
{
11
    use TestCaseTrait;
12
}
13