Commits
ttn authored 39bf371c280
1 + | /* |
2 + | * The MIT License |
3 + | * |
4 + | * Original work sponsored and donated by The Danish Health Data Authority (http://www.sundhedsdatastyrelsen.dk) |
5 + | * |
6 + | * Copyright (C) 2018 The Danish Health Data Authority (http://www.sundhedsdatastyrelsen.dk) |
7 + | * |
8 + | * |
9 + | * Permission is hereby granted, free of charge, to any person obtaining a copy of |
10 + | * this software and associated documentation files (the "Software"), to deal in |
11 + | * the Software without restriction, including without limitation the rights to |
12 + | * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies |
13 + | * of the Software, and to permit persons to whom the Software is furnished to do |
14 + | * so, subject to the following conditions: |
15 + | * |
16 + | * |
17 + | * The above copyright notice and this permission notice shall be included in all |
18 + | * copies or substantial portions of the Software. |
19 + | * |
20 + | * |
21 + | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
22 + | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
23 + | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
24 + | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
25 + | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
26 + | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
27 + | * SOFTWARE. |
28 + | */ |
1 29 | package dk.sundhedsdatastyrelsen.cbs.utils; |
2 30 | |
3 31 | import dk.sdsd.nsp.slalog.api.SLALogConfig; |
4 32 | import dk.sdsd.nsp.slalog.api.SLALogItem; |
5 33 | import org.junit.jupiter.api.Test; |
6 34 | import org.junit.jupiter.api.extension.ExtendWith; |
7 35 | import org.mockito.junit.jupiter.MockitoExtension; |
8 36 | |
9 37 | import static org.junit.jupiter.api.Assertions.assertDoesNotThrow; |
10 38 | |