PhpMigration\SymbolTableTest::testGet PHP Method

testGet() public method

public testGet ( )
    public function testGet()
    {
        // Case Sensitive
        $this->assertEquals('CamelCase', $this->csFilledTable->get('CamelCase'));
        $this->assertEquals(null, $this->csFilledTable->get('cAMELcASE'));
        // Case Insensitive
        $this->assertEquals('CamelCase', $this->icFilledTable->get('CamelCase'));
        $this->assertEquals('CamelCase', $this->icFilledTable->get('cAMELcASE'));
    }