ApiSuccessCode.java

1
package com.project.auth.presentation.support.response;
2
3
public enum ApiSuccessCode {
4
    AUTHENTICATED_USER_LOADED("AUTHENTICATED_USER_LOADED", "현재 사용자 조회가 완료되었습니다.");
5
6
    private final String code;
7
    private final String message;
8
9
    ApiSuccessCode(String code, String message) {
10
        this.code = code;
11
        this.message = message;
12
    }
13
14
    public String code() {
15 1 1. code : replaced return value with "" for com/project/auth/presentation/support/response/ApiSuccessCode::code → NO_COVERAGE
        return code;
16
    }
17
18
    public String message() {
19 1 1. message : replaced return value with "" for com/project/auth/presentation/support/response/ApiSuccessCode::message → NO_COVERAGE
        return message;
20
    }
21
}

Mutations

15

1.1
Location : code
Killed by : none
replaced return value with "" for com/project/auth/presentation/support/response/ApiSuccessCode::code → NO_COVERAGE

19

1.1
Location : message
Killed by : none
replaced return value with "" for com/project/auth/presentation/support/response/ApiSuccessCode::message → NO_COVERAGE

Active mutators

Tests examined


Report generated by PIT 1.19.1