Example #1
0
 public function testConstructAcceptsDayAttributes()
 {
     $sut = new DateSelectElement('dateSelect', array('day_attributes' => array('class' => 'test')));
     $dayAttributes = $sut->getDayAttributes();
     $this->assertEquals('test', $dayAttributes['class']);
 }