Example #1
0
 public function test_save_article()
 {
     $article = new Article();
     $article->setBody("hello");
     $article->setTitle("Title");
     $article->setLeading("Test...");
     $article->setCreatedBy("Moi");
     $this->assertEmpty(self::$articleService->saveArticle($article));
 }