Exemplo n.º 1
0
    /**
     * Test that get and set work
     *
     * @return void
     */
    public function testGetValues()
    {
        $key = "testKey1";
        $value = "testValue1";
        $this->order->parse(
            array(
                $key => $value
            )
        );

        $this->assertEquals($value, $this->order[$key]);
    }