use of easytests.core.models.TesteeModel in project easy-tests by malinink.
the class TesteesService method map.
private TesteeModelInterface map(TesteeEntity testeeEntity) {
if (testeeEntity == null) {
return null;
}
final TesteeModelInterface testeeModel = new TesteeModel();
testeeModel.map(testeeEntity);
return testeeModel;
}
use of easytests.core.models.TesteeModel in project easy-tests by malinink.
the class TesteesServiceTest method mapTesteeModel.
private TesteeModelInterface mapTesteeModel(TesteeEntity testeeEntity) {
final TesteeModelInterface testeeModel = new TesteeModel();
testeeModel.map(testeeEntity);
return testeeModel;
}
Aggregations