Skip to content
Prev Previous commit
Next Next commit
#3943: Fixed checkstyle issues.
  • Loading branch information
anenviousguest committed Feb 28, 2026
commit ac66f90b5cb698b048453e14d09105c48bd1be80
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
import org.mapstruct.ap.testutil.IssueKey;
import org.mapstruct.ap.testutil.ProcessorTest;
import org.mapstruct.ap.testutil.WithClasses;
import org.mapstruct.ap.testutil.compilation.annotation.*;
import org.mapstruct.ap.testutil.compilation.annotation.CompilationResult;
import org.mapstruct.ap.testutil.compilation.annotation.Diagnostic;
import org.mapstruct.ap.testutil.compilation.annotation.ExpectedCompilationOutcome;

import static org.assertj.core.api.Assertions.assertThat;

Expand All @@ -34,7 +36,8 @@ void shouldGenerateValidCodeForBeanWithMatchingProperty() {

@ProcessorTest
void shouldGenerateValidCodeForBeanWithoutMatchingProperty() {
Issue3943Mapper.TargetWithoutMatchingProperty target = Issue3943Mapper.INSTANCE.mapWithoutMatchingProperty( 42 );
Issue3943Mapper.TargetWithoutMatchingProperty target =
Issue3943Mapper.INSTANCE.mapWithoutMatchingProperty( 42 );
assertThat( target ).isNotNull();
assertThat( target.getNonMatchingProperty() ).isEqualTo( 42L );
}
Expand Down