Merge branch 'dev/feat/partner1.6_20231226' into pre

This commit is contained in:
苏竹红
2023-12-19 16:37:10 +08:00
11 changed files with 104 additions and 16 deletions

View File

@@ -6,6 +6,8 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.AbstractJUnit4SpringContextTests;
import java.util.Date;
/**
* @author Fun Li 2023/12/6 16:17
* @version 1.0
@@ -24,8 +26,13 @@ class ExhibitionServiceTest extends AbstractJUnit4SpringContextTests {
@Test
void testAutoCloseExhibition() {
int i = exhibitionService.autoCloseExhibition();
int i = exhibitionService.autoCloseExhibition(new Date());
log.info(i + "");
}
@Test
void testSendSMSToExhibitionApplicants() {
exhibitionService.sendSMSToExhibitionApplicants();
}
}