| Conditions | 1 |
| Total Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | package easytests.core.models; |
||
| 22 | public void map(AnswerEntity answerEntity) { |
||
| 23 | this.setId(answerEntity.getId()); |
||
| 24 | this.setTxt(answerEntity.getTxt()); |
||
| 25 | this.setSerialNumber(answerEntity.getSerialNumber()); |
||
| 26 | this.setQuestion(new QuestionModelEmpty(answerEntity.getQuestionId())); |
||
| 27 | this.setRight(answerEntity.getRight()); |
||
| 28 | } |
||
| 30 |