This file contains 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
... imports ... | |
public class Issue572 { | |
@Test(expectedExceptions = SpoonClassNotFoundException.class) | |
public void GivenSubclassWithParentNotInClasspath_WhenSuperclass_ThenException() throws URISyntaxException { | |
final URL url = Issue572.class.getClassLoader().getResource("issue572"); | |
assert url != null; | |
SpoonAPI launcher = new Launcher(); |
This file contains 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
version: "3.3" | |
services: | |
mongo: | |
image: mongo:4.1.1 | |
restart: on-failure | |
command: --wiredTigerCacheSizeGB 3 | |
ports: | |
# Charts db is available under port 27018 to not block the default mongo port | |
- "8082:8081" |