- 将 JUnit Jupiter 版本从 5.14.0 升级到 6.0.1 - 将 Spring 版本从 6.2.12 更新至 6.2.13 - 将 MySQL Connector/J 版本从 9.4.0 升级到 9.5.0 - 将 Spring AI 版本从 1.0.3 升级到 1.1.0 - 将 Dify Java Client 版本从 1.1.9 升级到 1.2.0 - 重命名测试类包名:adminbiz 和 executorbiz 包改为 openapi - 在 FramelessApplicationTest 中替换 System.out 为 SLF4J 日志记录 - 添加 JUnit Platform Launcher 依赖(被注释) - 更新 OllamaOptions 类引用为 OllamaChatOptions - 为简单聊天和流式聊天接口添加默认输入值及模型配置选项3.3.0-release
parent
852cae575e
commit
41354cfd35
@ -1,4 +1,4 @@
|
||||
package com.xxl.job.adminbiz;
|
||||
package com.xxl.job.openapi;
|
||||
|
||||
import com.xxl.job.core.constant.RegistType;
|
||||
import com.xxl.job.core.openapi.AdminBiz;
|
||||
@ -1,4 +1,4 @@
|
||||
package com.xxl.job.executorbiz;
|
||||
package com.xxl.job.openapi;
|
||||
|
||||
import com.xxl.job.core.constant.Const;
|
||||
import com.xxl.job.core.openapi.ExecutorBiz;
|
||||
@ -1,12 +1,21 @@
|
||||
package com.xxl.job.executor.sample.frameless.test;
|
||||
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.DisplayName;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.junit.platform.commons.annotation.Testable;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
@Testable
|
||||
public class FramelessApplicationTest {
|
||||
private static final Logger logger = LoggerFactory.getLogger(FramelessApplicationTest.class);
|
||||
|
||||
@Test
|
||||
public void test(){
|
||||
System.out.println("111");
|
||||
@DisplayName("test1")
|
||||
public void test1(){
|
||||
logger.info("111");
|
||||
Assertions.assertNull( null);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Loading…
Reference in new issue