Package models

Examples of models.Article.save()


    @Test
    public void addCommentValid() {
        Article article = createArticle("test");
        article.valid = true;
        article.save();
       
        // Non activity for the article
        assertEquals(0, Activity.count("article = ?", article));
       
        ArticleComment c = new ArticleComment(member, article, "Un commentaire");
View Full Code Here


        // Non activity for the article
        assertEquals(0, Activity.count("article = ?", article));
       
        ArticleComment c = new ArticleComment(member, article, "Un commentaire");
        article.addComment(c);
        article.save();
       
        // One activity for the article
        assertEquals(1, Activity.count("article = ?", article));
        Activity a = Activity.find("article = ?", article).first();
        assertActivity(a);
View Full Code Here

    @Test
    public void addCommentNonValid() {
        Article article = createArticle("test");
        article.valid = false;
        article.save();
       
        // No activity for the article
        assertEquals(0, Activity.count("article = ?", article));
       
        ArticleComment c = new ArticleComment(member, article, "Un commentaire");
View Full Code Here

        // No activity for the article
        assertEquals(0, Activity.count("article = ?", article));
       
        ArticleComment c = new ArticleComment(member, article, "Un commentaire");
        article.addComment(c);
        article.save();
       
        // Still no activity for the article
        assertEquals(0, Activity.count("article = ?", article));
       
        article.validate();
View Full Code Here

                final int nbComments = Dummy.randomInt(2*averageCommentsPerMember);
                for (int i = 0; i < nbComments; i++) {
                    Article a = articles.get(Dummy.randomInt(articles.size()));
                    a.addComment(new ArticleComment(m, a, Dummy.randomText(3000)));
                    a.save();
                }
            }
        }
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.