Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TFP-5732 forenkler utleding av behandlingsresultat type i revurdering #6818

Merged
merged 1 commit into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,8 @@
import no.nav.foreldrepenger.skjæringstidspunkt.SkjæringstidspunktTjeneste;

class ForeslåBehandlingsresultatTjenesteTest extends EntityManagerAwareTest {
private static final LocalDate SKJÆRINGSTIDSPUNKT = LocalDate.now();

private BehandlingRepositoryProvider repositoryProvider;
private BehandlingGrunnlagRepositoryProvider grunnlagRepositoryProvider;

private final DokumentBehandlingTjeneste dokumentBehandlingTjeneste = mock(DokumentBehandlingTjeneste.class);
private final OpphørUttakTjeneste opphørUttakTjeneste = mock(OpphørUttakTjeneste.class);
Expand All @@ -71,15 +69,13 @@ class ForeslåBehandlingsresultatTjenesteTest extends EntityManagerAwareTest {

@BeforeEach
public void setup() {
when(medlemTjeneste.utledVilkårUtfall(any())).thenReturn(new MedlemTjeneste.VilkårUtfallMedÅrsak(VilkårUtfallType.OPPFYLT, Avslagsårsak.UDEFINERT));
when(beregningTjeneste.hent(any())).thenReturn(Optional.empty());
var entityManager = getEntityManager();
repositoryProvider = new BehandlingRepositoryProvider(entityManager);
grunnlagRepositoryProvider = new BehandlingGrunnlagRepositoryProvider(entityManager);
var grunnlagRepositoryProvider = new BehandlingGrunnlagRepositoryProvider(entityManager);
fpUttakRepository = this.repositoryProvider.getFpUttakRepository();
var uttakTjeneste = new ForeldrepengerUttakTjeneste(fpUttakRepository);
revurderingBehandlingsresultatutleder = spy(new RevurderingBehandlingsresultatutleder(repositoryProvider,
grunnlagRepositoryProvider,
revurderingBehandlingsresultatutleder = spy(new RevurderingBehandlingsresultatutleder(repositoryProvider, grunnlagRepositoryProvider,
beregningTjeneste,
opphørUttakTjeneste,
skjæringstidspunktTjeneste,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
package no.nav.foreldrepenger.behandling.steg.foreslåresultat.svp;

import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.anyBoolean;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.spy;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;

import java.time.LocalDate;
import java.time.LocalDateTime;
Expand Down Expand Up @@ -57,10 +55,7 @@

class ForeslåBehandlingsresultatTjenesteTest extends EntityManagerAwareTest {

private static final LocalDate SKJÆRINGSTIDSPUNKT = LocalDate.now();

private BehandlingRepositoryProvider repositoryProvider;
private BehandlingGrunnlagRepositoryProvider grunnlagRepositoryProvider;

private final BeregningTjeneste beregningTjeneste = mock(BeregningTjeneste.class);
private final DokumentBehandlingTjeneste dokumentBehandlingTjeneste = mock(DokumentBehandlingTjeneste.class);
Expand All @@ -75,15 +70,13 @@ class ForeslåBehandlingsresultatTjenesteTest extends EntityManagerAwareTest {

@BeforeEach
public void setup() {
when(medlemTjeneste.utledVilkårUtfall(any())).thenReturn(new MedlemTjeneste.VilkårUtfallMedÅrsak(VilkårUtfallType.OPPFYLT, Avslagsårsak.UDEFINERT));
var entityManager = getEntityManager();
repositoryProvider = new BehandlingRepositoryProvider(entityManager);
grunnlagRepositoryProvider = new BehandlingGrunnlagRepositoryProvider(entityManager);
var grunnlagRepositoryProvider = new BehandlingGrunnlagRepositoryProvider(entityManager);
behandlingRepository = repositoryProvider.getBehandlingRepository();
behandlingVedtakRepository = repositoryProvider.getBehandlingVedtakRepository();
var svpUttakRepository = new SvangerskapspengerUttakResultatRepository(entityManager);
revurderingBehandlingsresultatutleder = spy(new RevurderingBehandlingsresultatutleder(repositoryProvider,
grunnlagRepositoryProvider,
revurderingBehandlingsresultatutleder = spy(new RevurderingBehandlingsresultatutleder(repositoryProvider, grunnlagRepositoryProvider,
svpUttakRepository,
beregningTjeneste,
opphørUttakTjeneste,
Expand Down

This file was deleted.

This file was deleted.

Loading