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.

26 lines
723 B
Java

package TestAttendanceAllowance;
import com.engine.attendance.attendanceanalysis.web.AttendanceanalysisAction;
import com.engine.common.util.DateUtil;
import com.google.common.collect.Maps;
import weaver.hrm.company.SubCompanyComInfo;
import java.util.Map;
public class Test extends beforlog{
@org.junit.Test
public void testAnalysis() throws Exception{
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);
}
}