()
| 103 | } |
| 104 | |
| 105 | @Test |
| 106 | void resourceCurrent() { |
| 107 | final var dotenv = Dotenv.configure() |
| 108 | .ignoreIfMalformed() |
| 109 | .load(); |
| 110 | |
| 111 | assertEquals("my test ev 1", dotenv.get("MY_TEST_EV1")); |
| 112 | assertHostEnvVar(dotenv); |
| 113 | } |
| 114 | |
| 115 | @Test |
| 116 | void systemProperties() { |
nothing calls this directly
no test coverage detected