()
| 62 | } |
| 63 | |
| 64 | @Test |
| 65 | void resourceRelative() { |
| 66 | final var dotenv = Dotenv.configure() |
| 67 | .directory("./") |
| 68 | .ignoreIfMalformed() |
| 69 | .load(); |
| 70 | |
| 71 | assertEquals("my test ev 1", dotenv.get("MY_TEST_EV1")); |
| 72 | assertHostEnvVar(dotenv); |
| 73 | } |
| 74 | |
| 75 | @Test |
| 76 | void resourceAbsoluteDir() { |
nothing calls this directly
no test coverage detected