ConfigurationIntegrityTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 7
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A testCanReadDatabaseSchema() 0 3 1
1
<?php
2
3
namespace SWL\Tests;
4
5
/**
6
 * @group semantic-watchlist
7
 *
8
 * @license GNU GPL v2+
9
 * @since 1.0
10
 *
11
 * @author mwjames
12
 */
13
class ConfigurationIntegrityTest extends \PHPUnit_Framework_TestCase {
14
15
	public function testCanReadDatabaseSchema() {
16
		$this->assertTrue( is_readable( $GLOBALS['egSwlSqlDatabaseSchemaPath'] ) );
17
	}
18
19
}