Example #1
0
 /**
  * @covers Geissler\CSL\Context\Context::getOptions
  */
 public function testGetNoOptions()
 {
     $this->assertInstanceOf($this->class, $this->object->addStyle('test', true));
     $this->assertInstanceOf($this->class, $this->object->addCitation('testMe', 123));
     $this->assertInstanceOf($this->class, $this->object->addBibliography('testMore', 'blub'));
     $this->setExpectedException('ErrorException');
     $this->object->getOptions();
 }