Пример #1
0
 /**
  * @covers ::getFactoryMethods
  */
 public function test_getFactoryMethods()
 {
     $Expected = array(new ReflectionMethod($this->Section, 'createStart'), new ReflectionMethod($this->Section, 'createBoundary'), new ReflectionMethod($this->Section, 'createEnd'));
     $this->assertEquals($Expected, $this->Section->getFactoryMethods(), 'Section::getFactoryMethods() returned an invalid value');
 }