function testMonthModule() { $myMonth = new Month("13-10-foodbank", "published"); $this->assertTrue($myMonth->get_id() == "13-10-foodbank"); $this->assertEqual($myMonth->get_group(), "foodbank"); $this->assertTrue($myMonth->get_status() == "published"); $this->assertTrue($myMonth->get_end_of_month_timestamp() == mktime(0, 0, 0, 10, 31, 2013)); echo "testMonth complete"; }