Пример #1
0
 /**
  * @param string $content
  * @param string $type
  * @param bool $expected
  * @dataProvider isChangedDataProvider
  */
 public function testIsChanged($content, $type, $expected)
 {
     $this->object->setContent($content);
     $this->object->setContentType($type);
     $this->assertEquals($expected, $this->object->isChanged());
 }