示例#1
0
文件: 18.php 项目: casan/eccube-2_13
 function thisDay()
 {
     return '<b>' . parent::thisDay() . '</b>';
 }
示例#2
0
 function testThisDay()
 {
     $this->mockcal->expectOnce('thisDay', array('int'));
     $Decorator = new Calendar_Decorator($this->mockcal);
     $this->assertEqual(15, $Decorator->thisDay());
 }