use of org.mamute.model.Question in project mamute by caelum.
the class CommentAnswerTest method login.
@Before
public void login() {
DaoManager manager = new DaoManager();
User author = manager.randomUser();
Question question = manager.createQuestion(author);
manager.answerQuestion(author, question);
}
Aggregations