()
| 77 | } |
| 78 | |
| 79 | @Test |
| 80 | void failToAddToDotenv() { |
| 81 | final var dotenv = Dotenv.configure().ignoreIfMalformed().load(); |
| 82 | final var entries = dotenv.entries(); |
| 83 | assertThrows(UnsupportedOperationException.class, () -> entries.add(new DotenvEntry("new", "value"))); |
| 84 | } |
| 85 | |
| 86 | @Test |
| 87 | void configureWithIgnoreMalformed() { |
nothing calls this directly
no test coverage detected