/**
  * How many months are there left in the year?
  */
 public function testHowManyMonthsLeftInTheYear()
 {
     $date = new qCal_Date(2010, 10, 23);
     $this->assertEqual($date->getNumMonthsUntilEndOfYear(), 2);
 }