Basho\Tests\TimeSeriesOperationsTest::testQueryNotFound PHP Method

testQueryNotFound() public method

public testQueryNotFound ( )
    public function testQueryNotFound()
    {
        $response = (new Command\Builder\TimeSeries\Query(static::$riak))->withQuery("select * from " . self::$table . " where time > 0 and time < 10 and region = 'South Atlantic' and state = 'South Carolina'")->build()->execute();
        $this->assertContains($response->getCode(), ['200', '204'], $response->getMessage());
        $this->assertCount(0, $response->getResults());
    }