Exemplo n.º 1
0
 /**
  * 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());
 }