Basho\Tests\TimeSeriesOperationsTest::testFetchTableDescriptionNotFound PHP Method

testFetchTableDescriptionNotFound() public method

    public function testFetchTableDescriptionNotFound()
    {
        $command = (new Command\Builder\TimeSeries\DescribeTable(static::$riak))->withTable(static::$table . 'notfound')->build();
        $this->assertInstanceOf('Basho\\Riak\\Command\\TimeSeries\\Query\\Fetch', $command);
        $response = $command->execute();
        $this->assertEquals('404', $response->getCode(), $response->getMessage());
    }