Example #1
0
 public function testUsage()
 {
     $output = $this->csvCellHeaderFieldsHelper->render($this->field);
     $this->assertInternalType('string', $output);
     $this->assertSame($this->field->getLabel(), $output);
 }
Example #2
0
 public function testCanSetAndGetLabel()
 {
     $this->field->setLabel('LABEL');
     $this->assertEquals('LABEL', $this->field->getLabel());
 }