This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"custom-layouts": [ | |
{ | |
"uuid": "{F58A3E99-18C5-40C0-B496-22C674101D1B}", | |
"name": "LinkedIn Learning", | |
"type": "canvas", | |
"info": { | |
"ref-width": 2560, | |
"ref-height": 1392, | |
"zones": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.testcontainers; | |
import org.assertj.core.api.Assertions; | |
import org.junit.Test; | |
import org.testcontainers.containers.GenericContainer; | |
import org.testcontainers.containers.startupcheck.OneShotStartupCheckStrategy; | |
public class JavaGCTest { | |
@Test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.testcontainers.containers; | |
import org.testcontainers.Testcontainers; | |
import org.testcontainers.containers.GenericContainer; | |
import org.testcontainers.containers.wait.strategy.Wait; | |
import org.testcontainers.utility.DockerImageName; | |
public class CloudflaredContainer extends GenericContainer<CloudflaredContainer> { | |
private String publicUrl; |
OlderNewer