Skip to content

Commit

Permalink
Fikse tester
Browse files Browse the repository at this point in the history
  • Loading branch information
ugur93 committed Dec 18, 2024
1 parent 74921b4 commit 93832a1
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import no.nav.bidrag.behandling.dto.v2.underhold.OppdatereFaktiskTilsynsutgiftRe
import no.nav.bidrag.behandling.dto.v2.underhold.OppdatereTilleggsstønadRequest
import no.nav.bidrag.behandling.dto.v2.underhold.OppdatereUnderholdRequest
import no.nav.bidrag.behandling.dto.v2.underhold.OppdatereUnderholdResponse
import no.nav.bidrag.behandling.dto.v2.underhold.OpprettUnderholdskostnadBarnResponse
import no.nav.bidrag.behandling.dto.v2.underhold.SletteUnderholdselement
import no.nav.bidrag.behandling.dto.v2.underhold.StønadTilBarnetilsynDto
import no.nav.bidrag.behandling.dto.v2.underhold.UnderholdDto
Expand Down Expand Up @@ -76,7 +77,7 @@ class UnderholdControllerTest : KontrollerTestRunner() {
"${rootUriV2()}/behandling/${behandling.id}/underhold/opprette",
HttpMethod.POST,
HttpEntity(request),
UnderholdDto::class.java,
OpprettUnderholdskostnadBarnResponse::class.java,
)

//
Expand All @@ -85,7 +86,7 @@ class UnderholdControllerTest : KontrollerTestRunner() {
statusCode shouldBe HttpStatus.CREATED
}

assertSoftly(svar.body) {
assertSoftly(svar.body!!.underholdskostnad) {
shouldNotBeNull()
id shouldBeGreaterThan 0L
harTilsynsordning.shouldBeNull()
Expand All @@ -95,7 +96,7 @@ class UnderholdControllerTest : KontrollerTestRunner() {
tilleggsstønad.shouldBeEmpty()
}

assertSoftly(svar.body!!.gjelderBarn) {
assertSoftly(svar.body!!.underholdskostnad.gjelderBarn) {
id.shouldNotBeNull()
navn shouldBe request.navn
fødselsdato shouldBe request.fødselsdato
Expand Down Expand Up @@ -143,7 +144,7 @@ class UnderholdControllerTest : KontrollerTestRunner() {
"${rootUriV2()}/behandling/${behandling.id}/underhold/opprette",
HttpMethod.POST,
HttpEntity(request),
UnderholdDto::class.java,
OpprettUnderholdskostnadBarnResponse::class.java,
)

//
Expand Down

0 comments on commit 93832a1

Please sign in to comment.