コード例 #1
0
 /**
  * @dataProvider exceptionForOnlyIntegerProvider
  * @expectedException \InvalidArgumentException
  * @expectedExceptionMessage Text encoding must be an integer
  */
 public function testSetTextEncodingWithInvalidArgument($argument)
 {
     $this->frame->setTextEncoding($argument);
 }
コード例 #2
0
ファイル: UserDefined.php プロジェクト: Nakard/music-formats
 /**
  * Constructs new user defined text information frame
  */
 public function __construct()
 {
     parent::__construct();
     $this->description = '';
 }