public function testToArray() { $article = new Article(); $article->setTitle('foo'); $article->setContent('bar'); $this->assertSame(array('id' => null, 'title' => 'foo', 'slug' => null, 'content' => 'bar', 'source' => null, 'isActive' => true, 'score' => null, 'date' => null, 'category' => null), $article->toArray()); }
public function testOffsetGet() { $article = new Article(); $article->setTitle('Doctrator'); $this->assertSame('Doctrator', $article['title']); }