/**
  * @dataProvider exceptionForOnlyIntegerProvider
  * @expectedException \InvalidArgumentException
  * @expectedExceptionMessage Text encoding must be an integer
  */
 public function testSetTextEncodingWithInvalidArgument($argument)
 {
     $this->frame->setTextEncoding($argument);
 }
Example #2
0
 /**
  * Constructs new user defined text information frame
  */
 public function __construct()
 {
     parent::__construct();
     $this->description = '';
 }