コード例 #1
0
ファイル: ToStringTest.php プロジェクト: xqddd/Notifications
 /**
  * When called will return the string representation
  */
 public function testWhenCalledWillReturnTheStringRepresentation()
 {
     $labelValue = 'testing';
     $label = new Label($labelValue);
     static::assertInternalType('string', $label->toString());
     static::assertEquals($labelValue, $label->toString());
 }