testcontainers专题提供testcontainers的最新资讯内容,帮你更好的了解testcontainers。
我是 github 操作的新手(来自 gitlab-ci)我正在尝试使用管道中的 testcontainers 运行集成测试,但我被卡住
当我尝试为 Kafka 容器编写集成测试时,我在尝试构建项目后收到此错误。我不知道出了什么问题。 <p
我有多个测试类使用 <a href="https://www.testcontainers.org/" rel="nofollow noreferrer">testcontainer</a> 运行相同的 docker-
在一个项目中,我们没有使用 spring(存在大量关于 testcontainers 的信息),而是一个相当旧的 jboss 版本 6
我在测试代码中运行了如下所示的测试容器。 <pre class="lang-java prettyprint-override"><code>@Testcontainers public
在工作中,我们决定使用 java <a href="https://www.testcontainers.org/" rel="nofollow noreferrer">TestContainers</a> 包,而
我是 Spring 的新手,我现在面临一个测试问题: 我有以下服务: <pre><code>@Service public class MyServic
我正在尝试为集成测试设置环境,到目前为止我已经使用了测试容器的 postgrsql 模块并且能够使其工作,
我的项目中有使用 testcontainer 的 junit 测试。 <pre><code>@Testcontainers(disabledWithoutDocker = true) public class Auto
我正在使用以下库从 Java Spring 应用程序启动嵌入式 maria DB 容器: <pre><code>com.playtika.testcontainers.embedde
我正在使用 Testcontainers 通过 docker 启动 CockroachDB 实例。 我需要通过将属性 <code>sql.defaults.experimental_tempor
我使用 <a href="https://www.testcontainers.org/features/commands/#executing-a-command" rel="nofollow noreferrer">Testcontainers</a>
在我的 Spring Boot 2.4.3 应用程序中,我使用了 Testcontainers 并按照互联网上的说明进行操作。我有一个<code>
我使用 Micronaut 2.4.0 并使用 testContainers 进行 SQL Server 集成测试。 这是我的 gradle.build <pre><code>
我在创建容器的集成测试中使用 <code>testcontainers</code>。 但它失败并出现以下错误: <pre><code>Step failed
我在 Spring Boot 2.4.3 中使用 Testcontainers 1.15.2(使用 postgres 映像 13.2-alpine)。 Testcontainer 使用 init 脚本启
我有以下一段代码: <pre><code>public static PostgreSQLContainer&lt;?&gt; postgreDBContainer = new PostgreSQLContainer&lt;&gt
如果我在集成测试中使用单例数据库容器,如何在每次测试之前确保数据库处于干净状态(无数据)?
我正在使用 <code>TestContainers</code> 进行集成测试并尝试启用 SASL,以便我可以保留相同的配置文件而不是
我使用 Spring Boot 编写了一个 Web 服务,监听端口 8443。 我在 Dockerfile 中公开端口 8443 并使用 <code>docker run