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.
23 lines
620 B
Java
23 lines
620 B
Java
1 year ago
|
package TestAttendanceAllowance;
|
||
|
|
||
|
import com.engine.attendance.attendanceanalysis.web.AttendanceanalysisAction;
|
||
|
import com.google.common.collect.Maps;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
public class Test extends beforlog{
|
||
|
|
||
|
@org.junit.Test
|
||
|
public void testAnalysis(){
|
||
|
Map<String,Object> paramMap = Maps.newHashMap();
|
||
|
paramMap.put("startDate","2024-04-10");
|
||
|
paramMap.put("endDate","2024-04-10");
|
||
|
paramMap.put("userIds","81");
|
||
|
|
||
|
beforlog be = new beforlog();
|
||
|
AttendanceanalysisAction action = new AttendanceanalysisAction();
|
||
|
action.getSchedulingData(null,null);
|
||
|
|
||
|
}
|
||
|
}
|