示例#1
0
function date_year_correct_(&$year)
{
    $year = date_year_correct($year);
}
 function testYearCorrectReturn()
 {
     $year = 88;
     $year = date_year_correct($year);
     $this->assertEquals($year, 1988);
 }