| | |
| | | testPlan.setCreator("admin"); |
| | | testPlan.setCreateTime(new Date()); |
| | | testPlan.setState(0);//试验状态:未开始 |
| | | testPlan.setTestCount(0);//测试测试默认为0 |
| | | mapper.insert(testPlan); |
| | | return new Response().setMsg(1,"添加成功"); |
| | | } |
| | |
| | | int testCount = testPlan.getTestCount(); |
| | | if (planCount!=0 && testCount==planCount){ |
| | | testPlan.setState(3);//已结束 |
| | | int k = (int)Math.random()*2; |
| | | int k = (int)(Math.random()*2); |
| | | if (k==1){ |
| | | testPlan.setConclusion("通过"); |
| | | testPlan.setConclusion("合格"); |
| | | }else{ |
| | | testPlan.setConclusion("不通过"); |
| | | testPlan.setConclusion("不合格"); |
| | | } |
| | | }else { |
| | | testPlan.setState(2);//已停止 |