Skip to content

Commit

Permalink
PR #95 - update unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
Build Pipeline authored and bsorrentino committed Jun 28, 2021
1 parent 3ab1288 commit c870d41
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,13 @@ public void testPR45() throws Exception {
assertNotNull( myMojo.annotationProcessorPaths );
assertEquals( 1, myMojo.annotationProcessorPaths.size() );

final DependencyCoordinate coord = myMojo.annotationProcessorPaths.get(0);

assertNotNull( coord );
assertEquals( "org.mapstruct", coord.getGroupId() );
assertEquals( "mapstruct-processor", coord.getArtifactId() );
assertEquals( "1.0", coord.getVersion() );


}
}

0 comments on commit c870d41

Please sign in to comment.