| Conditions | 1 |
| Total Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | package easytests.core.models; |
||
| 26 | public void map(QuestionEntity questionEntity) { |
||
| 27 | this.setId(questionEntity.getId()); |
||
| 28 | this.setText(questionEntity.getText()); |
||
| 29 | this.setQuestionType(new QuestionTypeModelEmpty(questionEntity.getQuestionTypeId())); |
||
| 30 | this.setTopic(new TopicModelEmpty(questionEntity.getTopicId())); |
||
| 31 | this.setAnswers(new ModelsListEmpty()); |
||
| 32 | } |
||
| 34 |