xiaoyong931011
2022-08-05 d99c41d3f924797072f31af6a14676d7d9ff400e
src/test/java/cc/mrbird/febs/ProfitTest.java
@@ -45,12 +45,12 @@
    @Test
    public void staticProfit() {
        memberProfitService.staticProfit();
        memberProfitService.staticProfit(new Date());
    }
    @Test
    public void thankfulProfit() {
        memberProfitService.thankfulProfit();
        memberProfitService.thankfulProfit(new Date());
    }
    @Test
@@ -63,7 +63,7 @@
    @Test
    public void directorProfitTest() {
        memberProfitService.storeAndDirectorProfit(null);
        memberProfitService.storeAndDirectorProfit(new Date());
    }
    @Autowired
@@ -92,4 +92,9 @@
    public void changeAmount(Map<String, Integer> amount) {
        amount.put("amount", 2);
    }
    @Test
    public void scorePool(){
        memberProfitService.scorePool();
    }
}