• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

torresj / community-api / 2

23 May 2025 01:56PM UTC coverage: 22.105%. First build
2

push

circleci

Jaime Torres Benavente
Project ready to be deployed

42 of 173 new or added lines in 18 files covered. (24.28%)

42 of 190 relevant lines covered (22.11%)

0.22 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/main/java/com/torresj/community/mappers/UserMapper.java
1
package com.torresj.community.mappers;
2

3
import com.torresj.community.dtos.CommunityDto;
4
import com.torresj.community.dtos.UserDto;
5
import com.torresj.community.entities.UserEntity;
6
import org.mapstruct.Mapper;
7

8
@Mapper(componentModel = "spring")
9
public interface UserMapper {
10
  default UserDto toUserDto(UserEntity userEntity, CommunityDto communityDto) {
NEW
11
    return new UserDto(
×
NEW
12
        userEntity.getId(), communityDto, userEntity.getName(), userEntity.getRole());
×
13
  }
14
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc