Добавлен цикл проверки сайтов
This commit is contained in:
89
vendor/nilportugues/sql-query-builder/tests/Manipulation/IntersectTest.php
vendored
Normal file
89
vendor/nilportugues/sql-query-builder/tests/Manipulation/IntersectTest.php
vendored
Normal file
@ -0,0 +1,89 @@
|
||||
<?php
|
||||
/**
|
||||
* Author: Nil Portugués Calderó <contact@nilportugues.com>
|
||||
* Date: 9/12/14
|
||||
* Time: 7:26 PM.
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace NilPortugues\Tests\Sql\QueryBuilder\Manipulation;
|
||||
|
||||
use NilPortugues\Sql\QueryBuilder\Manipulation\Intersect;
|
||||
use NilPortugues\Sql\QueryBuilder\Manipulation\Select;
|
||||
|
||||
/**
|
||||
* Class IntersectTest.
|
||||
*/
|
||||
class IntersectTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
/**
|
||||
* @var Intersect
|
||||
*/
|
||||
private $query;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $exceptionClass = '\NilPortugues\Sql\QueryBuilder\Manipulation\QueryException';
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
protected function setUp()
|
||||
{
|
||||
$this->query = new Intersect();
|
||||
}
|
||||
|
||||
/**
|
||||
* @test
|
||||
*/
|
||||
public function itShouldGetPartName()
|
||||
{
|
||||
$this->assertSame('INTERSECT', $this->query->partName());
|
||||
}
|
||||
|
||||
/**
|
||||
* @test
|
||||
*/
|
||||
public function itShouldThrowExceptionForUnsupportedGetTable()
|
||||
{
|
||||
$this->setExpectedException($this->exceptionClass);
|
||||
$this->query->getTable();
|
||||
}
|
||||
|
||||
/**
|
||||
* @test
|
||||
*/
|
||||
public function itShouldThrowExceptionForUnsupportedGetWhere()
|
||||
{
|
||||
$this->setExpectedException($this->exceptionClass);
|
||||
$this->query->getWhere();
|
||||
}
|
||||
|
||||
/**
|
||||
* @test
|
||||
*/
|
||||
public function itShouldThrowExceptionForUnsupportedWhere()
|
||||
{
|
||||
$this->setExpectedException($this->exceptionClass);
|
||||
$this->query->where();
|
||||
}
|
||||
|
||||
/**
|
||||
* @test
|
||||
*/
|
||||
public function itShouldGetIntersectSelects()
|
||||
{
|
||||
$this->assertEquals(array(), $this->query->getIntersects());
|
||||
|
||||
$select1 = new Select('user');
|
||||
$select2 = new Select('user_email');
|
||||
|
||||
$this->query->add($select1);
|
||||
$this->query->add($select2);
|
||||
|
||||
$this->assertEquals(array($select1, $select2), $this->query->getIntersects());
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user