Cassandra\ExecutionOptionsTest::testReturnsNullValuesWhenRetrievingUndefinedSettingsByName PHP 메소드

testReturnsNullValuesWhenRetrievingUndefinedSettingsByName() 공개 메소드

    public function testReturnsNullValuesWhenRetrievingUndefinedSettingsByName()
    {
        $options = new ExecutionOptions(array());
        $this->assertNull($options->consistency);
        $this->assertNull($options->serialConsistency);
        $this->assertNull($options->pageSize);
        $this->assertNull($options->timeout);
        $this->assertNull($options->arguments);
    }