Beispiel #1
0
 /**
  * @depends testSetOption
  */
 public function testGetOptions()
 {
     $this->fb->option('foo', 'bar');
     $options = $this->fb->getOptions();
     $this->assertInternalType('array', $options);
     $this->assertCount(1, $options);
     $this->assertSame('bar', current($options));
     $this->assertSame('foo', key($options));
 }