for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WikidataQueryApi\Query;
/**
* @covers WikidataQueryApi\Query\OrQuery
*
* @licence GPLv2+
* @author Thomas Pellissier Tanon
*/
class OrQueryTest extends \PHPUnit_Framework_TestCase {
public function testGetSubQueries() {
$query = new OrQuery( [] );
$this->assertEquals( [], $query->getSubQueries() );
}
public function testGetType() {
$this->assertEquals( 'OR', $query->getType() );