()
| 137 | } |
| 138 | |
| 139 | @Test |
| 140 | void iterateOverDotenv() { |
| 141 | final var dotenv = Dotenv.configure() |
| 142 | .ignoreIfMalformed() |
| 143 | .load(); |
| 144 | |
| 145 | for (final var e : dotenv.entries()) { |
| 146 | assertEquals(dotenv.get(e.getKey()), e.getValue()); |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | @Test |
| 151 | void iterateOverEnvVar() { |