()
| 29 | } |
| 30 | |
| 31 | @Test |
| 32 | void dotenvIgnoreMalformed() { |
| 33 | final var dotenv = Dotenv.configure() |
| 34 | .directory("./src/test/resources") |
| 35 | .ignoreIfMalformed() |
| 36 | .load(); |
| 37 | |
| 38 | envVars.forEach((key, expected) -> assertEquals(expected, dotenv.get(key))); |
| 39 | assertHostEnvVar(dotenv); |
| 40 | } |
| 41 | |
| 42 | @Test |
| 43 | void dotenvDuplicateVariable() { |
nothing calls this directly
no test coverage detected