Skip to content

Commit

Permalink
test-core-更新QuarkusTest注解,提升单元测试运行效率
Browse files Browse the repository at this point in the history
  • Loading branch information
Ning19230223 committed Dec 6, 2024
1 parent 5c85ddf commit 4830434
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import net.ximatai.muyun.database.IDatabaseOperationsStd;
import net.ximatai.muyun.database.builder.TableBuilder;
import net.ximatai.muyun.database.builder.TableWrapper;
import net.ximatai.muyun.test.testcontainers.PostgresTestResource;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
Expand All @@ -19,7 +20,7 @@

@QuarkusTest
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
@QuarkusTestResource(value = PostgresTestResource3.class, restrictToAnnotatedClass = true)
@QuarkusTestResource(value = PostgresTestResource.class)
public class TestDatabaseOperations {

@Inject
Expand Down

0 comments on commit 4830434

Please sign in to comment.