testCanReadDatabaseSchema()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
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
}