Zephir\Test\ConfigTest::testGetWithoutNamespace PHP Method

testGetWithoutNamespace() public method

    public function testGetWithoutNamespace()
    {
        $config = new Config();
        $config->set('verbose', false);
        $this->assertFalse($config->get('verbose'));
    }