-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Legg til enumer og insert rad på slett utkast.
Co-authored-by: Julie Hill Roa <[email protected]>
- Loading branch information
1 parent
8d32881
commit 556a6b5
Showing
4 changed files
with
53 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
src/test/java/no/nav/veilarbvedtaksstotte/service/SakStatistikkServiceTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package no.nav.veilarbvedtaksstotte.service | ||
|
||
import org.junit.jupiter.api.BeforeEach | ||
import org.mockito.Mockito.reset | ||
|
||
class SakStatistikkServiceTest { | ||
|
||
companion object { | ||
lateinit var sakStatistikkService: SakStatistikkService | ||
} | ||
|
||
@BeforeEach | ||
fun before() { | ||
reset(sakStatistikkService) | ||
} | ||
} |