Beispiel #1
0
 function thisDay()
 {
     return '<b>' . parent::thisDay() . '</b>';
 }
 function testThisDay()
 {
     $this->mockcal->expectOnce('thisDay', array('int'));
     $Decorator = new Calendar_Decorator($this->mockcal);
     $this->assertEqual(15, $Decorator->thisDay());
 }