public function testSetTimeline() { $rtm = new Rtm(); $rtm->setTimeline('1231235345345'); $this->assertEquals('1231235345345', $rtm->getTimeline()); $rtm = new Rtm(array('timeline' => '1231235345345')); $this->assertEquals('1231235345345', $rtm->getTimeline()); }