Passed
Pull Request — master (#197)
by
unknown
01:49
created

ExpressionTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 4
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A test__construct() 0 2 1
1
<?php
2
namespace Foolz\SphinxQL\Tests;
3
4
use Foolz\SphinxQL\Expression;
5
6
use PHPUnit\Framework\TestCase;
7
8
class ExpressionTest extends TestCase{
9
10
	public function test__construct(){
11
		$this->assertNotNull(new Expression());
12
	}
13
14
}