You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
555 B
Java
19 lines
555 B
Java
11 months ago
|
package TestAttendanceAllowance;
|
||
|
|
||
|
import com.engine.attendance.attendanceanalysis.dto.ClockPointDTO;
|
||
|
import com.engine.attendance.attendanceanalysis.web.AttendanceanalysisAction;
|
||
|
import com.engine.attendance.enums.ClockPointEnum;
|
||
|
import com.google.common.collect.Maps;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
public class Test2 {
|
||
|
@org.junit.Test
|
||
|
public void testAnalysis() throws Exception{
|
||
|
ClockPointDTO clockPointDTO = ClockPointDTO.builder().build();
|
||
|
clockPointDTO.setRecord(true);
|
||
|
System.out.println(clockPointDTO.isRecord());
|
||
|
|
||
|
}
|
||
|
}
|