Skip to content

Commit

Permalink
Setup test with all the content
Browse files Browse the repository at this point in the history
  • Loading branch information
imonteroperez committed Jan 12, 2022
1 parent bc8768b commit 160b7bb
Showing 1 changed file with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2309,17 +2309,11 @@ private void solveMethodFilteringOnIncludedExcludedTests()
StringBuilder sb = new StringBuilder();
for ( ResolvedTest test : includedExcludedTests.getIncludedPatterns() )
{
if ( test.hasTestMethodPattern() )
{
sb.append( "," ).append( test );
}
sb.append( "," ).append( test );
}
for ( ResolvedTest test : includedExcludedTests.getExcludedPatterns() )
{
if ( test.hasTestMethodPattern() )
{
sb.append( ",!" ).append( test );
}
sb.append( ",!" ).append( test );
}
setTest( sb.deleteCharAt( 0 ).toString() );
}
Expand Down

0 comments on commit 160b7bb

Please sign in to comment.