diff --git a/index.md b/index.md index 352e89fe28..81b2242207 100644 --- a/index.md +++ b/index.md @@ -235,9 +235,13 @@ Test quality metrics for framework packages.
latest |
- dependabot/npm_and_yarn/report/report-ng/babel/core-7.24.6 |
+ main |
mutation | |
---|---|---|---|---|
2024-05-27T09:15:22 |
+ main |
+ mutation | +||
2024-05-27T01:16:44 |
dependabot/npm_and_yarn/report/report-ng/babel/core-7.24.6 |
mutation | @@ -314,10 +318,6 @@ Test quality metrics for framework packages.dependabot/maven/info.picocli-picocli-4.7.6 |
mutation |
2024-05-13T00:17:56 |
- dependabot/github_actions/actions/checkout-4.1.5 |
- mutation | -
- -1 - | -- - - - - - | -package com.mastercard.test.flow.report.duct; |
- -2 - | -- - - - - - | -|
- -3 - | -- - - - - - | -import static java.nio.charset.StandardCharsets.UTF_8; |
- -4 - | -- - - - - - | -|
- -5 - | -- - - - - - | -import java.io.ByteArrayOutputStream; |
- -6 - | -- - - - - - | -import java.io.IOException; |
- -7 - | -- - - - - - | -import java.io.InputStream; |
- -8 - | -- - - - - - | -import java.io.OutputStream; |
- -9 - | -- - - - - - | -import java.net.HttpURLConnection; |
- -10 - | -- - - - - - | -import java.net.URL; |
- -11 - | -- - - - - - | -import java.util.function.Function; |
- -12 - | -- - - - - - | -|
- -13 - | -- - - - - - | -/** |
- -14 - | -- - - - - - | - * A very simple HTTP client |
- -15 - | -- - - - - - | - */ |
- -16 - | -- - - - - - | -class HttpClient { |
- -17 - | -- - - - - - | -|
- -18 - | -- - - - - - | - private HttpClient() { |
- -19 - | -- - - - - - | - // no instances |
- -20 - | -- - - - - - | - } |
- -21 - | -- - - - - - | -|
- -22 - | -- - - - - - | - /** |
- -23 - | -- - - - - - | - * Does a HTTP request |
- -24 - | -- - - - - - | - * |
- -25 - | -- - - - - - | - * @param url request URL |
- -26 - | -- - - - - - | - * @param method request method |
- -27 - | -- - - - - - | - * @param body request body |
- -28 - | -- - - - - - | - * @return The response body string |
- -29 - | -- - - - - - | - */ |
- -30 - | -- - - - - - | - static Response<String> request( String url, String method, String body ) { |
- -31 - | -
-
-2
-
-1. lambda$request$0 : replaced return value with "" for com/mastercard/test/flow/report/duct/HttpClient::lambda$request$0 → KILLED -2. request : replaced return value with null for com/mastercard/test/flow/report/duct/HttpClient::request → KILLED - - - - |
- return request( url, method, body, b -> new String( b, UTF_8 ) ); |
- -32 - | -- - - - - - | - } |
- -33 - | -- - - - - - | -|
- -34 - | -- - - - - - | - /** |
- -35 - | -- - - - - - | - * Does a HTTP request |
- -36 - | -- - - - - - | - * |
- -37 - | -- - - - - - | - * @param <T> response body type |
- -38 - | -- - - - - - | - * @param url request URL |
- -39 - | -- - - - - - | - * @param method request method |
- -40 - | -- - - - - - | - * @param body request body |
- -41 - | -- - - - - - | - * @param parse How to parse the response body |
- -42 - | -- - - - - - | - * @return The parsed response, which will have response code -1 in the event of |
- -43 - | -- - - - - - | - * failure |
- -44 - | -- - - - - - | - */ |
- -45 - | -- - - - - - | - static <T> Response<T> request( String url, String method, String body, |
- -46 - | -- - - - - - | - Function<byte[], T> parse ) { |
- -47 - | -- - - - - - | - try { |
- -48 - | -- - - - - - | - HttpURLConnection connection = (HttpURLConnection) new URL( url ) |
- -49 - | -- - - - - - | - .openConnection(); |
- -50 - | -
-
-1
-
-1. request : removed call to java/net/HttpURLConnection::setRequestMethod → KILLED - - - - |
- connection.setRequestMethod( method ); |
- -51 - | -
-
-1
-
-1. request : removed call to java/net/HttpURLConnection::setDoInput → KILLED - - - - |
- connection.setDoInput( true ); |
- -52 - | -
-
-1
-
-1. request : removed call to java/net/HttpURLConnection::setConnectTimeout → KILLED - - - - |
- connection.setConnectTimeout( 3000 ); |
- -53 - | -
-
-1
-
-1. request : removed call to java/net/HttpURLConnection::setReadTimeout → KILLED - - - - |
- connection.setReadTimeout( 3000 ); |
- -54 - | -- - - - - - | -|
- -55 - | -
-
-1
-
-1. request : negated conditional → KILLED - - - - |
- if( body != null ) { |
- -56 - | -
-
-1
-
-1. request : removed call to java/net/HttpURLConnection::setDoOutput → KILLED - - - - |
- connection.setDoOutput( true ); |
- -57 - | -- - - - - - | - try( OutputStream out = connection.getOutputStream() ) { |
- -58 - | -
-
-1
-
-1. request : removed call to java/io/OutputStream::write → KILLED - - - - |
- out.write( body.getBytes( UTF_8 ) ); |
- -59 - | -- - - - - - | - } |
- -60 - | -- - - - - - | - } |
- -61 - | -- - - - - - | -|
- -62 - | -- - - - - - | - ByteArrayOutputStream baos = new ByteArrayOutputStream(); |
- -63 - | -- - - - - - | - byte[] buff = new byte[1024]; |
- -64 - | -- - - - - - | - int read = 0; |
- -65 - | -- - - - - - | -|
- -66 - | -- - - - - - | - try( InputStream in = response( connection ) ) { |
- -67 - | -- - - - - - | - while( (read = in.read( buff )) != -1 ) { |
- -68 - | -- - - - - - | - baos.write( buff, 0, read ); |
- -69 - | -- - - - - - | - } |
- -70 - | -- - - - - - | - } |
- -71 - | -- - - - - - | -|
- -72 - | -
-
-1
-
-1. request : replaced return value with null for com/mastercard/test/flow/report/duct/HttpClient::request → KILLED - - - - |
- return new Response<>( connection.getResponseCode(), baos.toByteArray(), parse ); |
- -73 - | -- - - - - - | - } |
- -74 - | -- - - - - - | - catch( IOException e ) { |
- -75 - | -
-
-1
-
-1. request : replaced return value with null for com/mastercard/test/flow/report/duct/HttpClient::request → KILLED - - - - |
- return new Response<>( -1, e.getMessage().getBytes( UTF_8 ), parse ); |
- -76 - | -- - - - - - | - } |
- -77 - | -- - - - - - | - } |
- -78 - | -- - - - - - | -|
- -79 - | -- - - - - - | - /** |
- -80 - | -- - - - - - | - * Response details |
- -81 - | -- - - - - - | - * |
- -82 - | -- - - - - - | - * @param <T> parsed body type |
- -83 - | -- - - - - - | - */ |
- -84 - | -- - - - - - | - static class Response<T> { |
- -85 - | -- - - - - - | - /** |
- -86 - | -- - - - - - | - * Response code |
- -87 - | -- - - - - - | - */ |
- -88 - | -- - - - - - | - int code; |
- -89 - | -- - - - - - | - /** |
- -90 - | -- - - - - - | - * body text |
- -91 - | -- - - - - - | - */ |
- -92 - | -- - - - - - | - final String raw; |
- -93 - | -- - - - - - | - /** |
- -94 - | -- - - - - - | - * parsed body |
- -95 - | -- - - - - - | - */ |
- -96 - | -- - - - - - | - final T body; |
- -97 - | -- - - - - - | -|
- -98 - | -- - - - - - | - /** |
- -99 - | -- - - - - - | - * @param code Response code |
- -100 - | -- - - - - - | - * @param data body bytes |
- -101 - | -- - - - - - | - * @param parse how to parse the body |
- -102 - | -- - - - - - | - */ |
- -103 - | -- - - - - - | - Response( int code, byte[] data, Function<byte[], T> parse ) { |
- -104 - | -- - - - - - | - this.code = code; |
- -105 - | -- - - - - - | - String r = new String( data, UTF_8 ); |
- -106 - | -- - - - - - | - T parsed = null; |
- -107 - | -- - - - - - | - try { |
- -108 - | -- - - - - - | - parsed = parse.apply( data ); |
- -109 - | -- - - - - - | - } |
- -110 - | -- - - - - - | - catch( Exception e ) { |
- -111 - | -- - - - - - | - r += "\nParse failure : " + e.getMessage(); |
- -112 - | -- - - - - - | - } |
- -113 - | -- - - - - - | - body = parsed; |
- -114 - | -- - - - - - | - raw = r; |
- -115 - | -- - - - - - | - } |
- -116 - | -- - - - - - | -|
- -117 - | -- - - - - - | - @Override |
- -118 - | -- - - - - - | - public String toString() { |
- -119 - | -
-
-1
-
-1. toString : replaced return value with "" for com/mastercard/test/flow/report/duct/HttpClient$Response::toString → KILLED - - - - |
- return "rc: " + code + "\n" + raw; |
- -120 - | -- - - - - - | - } |
- -121 - | -- - - - - - | - } |
- -122 - | -- - - - - - | -|
- -123 - | -- - - - - - | - private static InputStream response( HttpURLConnection conn ) throws IOException { |
- -124 - | -
-
-2
-
-1. response : negated conditional → KILLED -2. response : changed conditional boundary → KILLED - - - - |
- if( conn.getResponseCode() < HttpURLConnection.HTTP_BAD_REQUEST ) { |
- -125 - | -
-
-1
-
-1. response : replaced return value with null for com/mastercard/test/flow/report/duct/HttpClient::response → KILLED - - - - |
- return conn.getInputStream(); |
- -126 - | -- - - - - - | - } |
- -127 - | -
-
-1
-
-1. response : replaced return value with null for com/mastercard/test/flow/report/duct/HttpClient::response → KILLED - - - - |
- return conn.getErrorStream(); |
- -128 - | -- - - - - - | - } |
- -129 - | -- - - - - - | -} |
Mutations | ||
31 | -- |
-
-
-
- 1.1 2.2 |
-
50 | -- |
-
-
-
- 1.1 |
-
51 | -- |
-
-
-
- 1.1 |
-
52 | -- |
-
-
-
- 1.1 |
-
53 | -- |
-
-
-
- 1.1 |
-
55 | -- |
-
-
-
- 1.1 |
-
56 | -- |
-
-
-
- 1.1 |
-
58 | -- |
-
-
-
- 1.1 |
-
72 | -- |
-
-
-
- 1.1 |
-
75 | -- |
-
-
-
- 1.1 |
-
119 | -- |
-
-
-
- 1.1 |
-
124 | -- |
-
-
-
- 1.1 2.2 |
-
125 | -- |
-
-
-
- 1.1 |
-
127 | -- |
-
-
-
- 1.1 |
-
1.1
Location : box
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:lines()] replaced return value with null for com/mastercard/test/flow/assrt/filter/cli/Cli::box → KILLED
1.1
Location : box
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:lines()] removed call to java/util/function/Consumer::accept → KILLED
1.1
Location : box
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:lines()] replaced return value with null for com/mastercard/test/flow/assrt/filter/cli/Cli::box → KILLED
1.1
Location : content
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:lines()] replaced return value with null for com/mastercard/test/flow/assrt/filter/cli/Cli::content → KILLED
1.1
Location : append
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:lines()] Replaced integer addition with subtraction → KILLED
1.1
Location : append
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:lines()] replaced return value with null for com/mastercard/test/flow/assrt/filter/cli/Cli::append → KILLED
1.1
Location : fill
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:indexedTaggedList()] negated conditional → KILLED
2.2
Location : fill
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:indexedTaggedList()] changed conditional boundary → KILLED
1.1
Location : fill
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:fluency()] replaced return value with null for com/mastercard/test/flow/assrt/filter/cli/Cli::fill → KILLED
1.1
Location : styled
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:descriptionList()] Replaced integer addition with subtraction → KILLED
1.1
Location : styled
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:descriptionList()] replaced return value with null for com/mastercard/test/flow/assrt/filter/cli/Cli::styled → KILLED
1.1
Location : ellipsised
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:indexedTaggedList()] replaced return value with null for com/mastercard/test/flow/assrt/filter/cli/Cli::ellipsised → KILLED
2.2
Location : ellipsised
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:indexedTaggedList()] Replaced integer subtraction with addition → KILLED
3.3
Location : ellipsised
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:indexedTaggedList()] Replaced integer subtraction with addition → KILLED
1.1
Location : endLine
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:lines()] Replaced integer subtraction with addition → KILLED
2.2
Location : endLine
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:lines()] Replaced integer subtraction with addition → KILLED
1.1
Location : endLine
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:lines()] changed conditional boundary → KILLED
2.2
Location : endLine
Killed by : negated conditional → TIMED_OUT
1.1
Location : endLine
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:fluency()] replaced return value with null for com/mastercard/test/flow/assrt/filter/cli/Cli::endLine → KILLED
1.1
Location : <init>
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:lines()] Replaced integer subtraction with addition → KILLED
1.1
Location : <init>
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:lines()] negated conditional → KILLED
1.1
Location : <init>
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:title()] Replaced integer subtraction with addition → KILLED
1.1
Location : section
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:nesting()] replaced return value with null for com/mastercard/test/flow/assrt/filter/cli/Cli$Box::section → KILLED
1.1
Location : box
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:nesting()] Replaced integer addition with subtraction → KILLED
1.1
Location : box
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:nesting()] removed call to java/util/function/Consumer::accept → KILLED
1.1
Location : box
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:nesting()] replaced return value with null for com/mastercard/test/flow/assrt/filter/cli/Cli$Box::box → KILLED
1.1
Location : paragraph
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:title()] removed call to java/util/stream/Stream::forEach → KILLED
1.1
Location : lambda$paragraph$1
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:title()] removed call to java/util/Deque::forEach → KILLED
1.1
Location : paragraph
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:paragraph()] replaced return value with null for com/mastercard/test/flow/assrt/filter/cli/Cli$Box::paragraph → KILLED
1.1
Location : line
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:lines()] removed call to java/util/stream/Stream::forEach → KILLED
1.1
Location : line
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:lines()] replaced return value with null for com/mastercard/test/flow/assrt/filter/cli/Cli$Box::line → KILLED
1.1
Location : words
Killed by : com.mastercard.test.flow.assrt.filter.cli.TagPhaseTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.TagPhaseTest]/[method:wrapping()] removed call to java/util/Deque::forEach → KILLED
1.1
Location : lambda$words$4
Killed by : com.mastercard.test.flow.assrt.filter.cli.TagPhaseTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.TagPhaseTest]/[method:wrapping()] removed call to java/util/List::forEach → KILLED
1.1
Location : words
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:fluency()] replaced return value with null for com/mastercard/test/flow/assrt/filter/cli/Cli$Box::words → KILLED
1.1
Location : descriptionList
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:descriptionList()] Replaced integer addition with subtraction → KILLED
1.1
Location : descriptionList
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:descriptionList()] removed call to java/util/function/Consumer::accept → KILLED
1.1
Location : descriptionList
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:fluency()] replaced return value with null for com/mastercard/test/flow/assrt/filter/cli/Cli$Box::descriptionList → KILLED
1.1
Location : indexedTaggedList
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:indexedTaggedList()] Replaced integer addition with subtraction → KILLED
1.1
Location : indexedTaggedList
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:indexedTaggedList()] removed call to java/util/function/Consumer::accept → KILLED
1.1
Location : indexedTaggedList
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:fluency()] replaced return value with null for com/mastercard/test/flow/assrt/filter/cli/Cli$Box::indexedTaggedList → KILLED
1.1
Location : close
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:lines()] replaced return value with null for com/mastercard/test/flow/assrt/filter/cli/Cli$Box::close → KILLED
1.1
Location : item
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:descriptionList()] replaced return value with null for com/mastercard/test/flow/assrt/filter/cli/Cli$DescriptionList::item → KILLED
1.1
Location : close
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:descriptionList()] removed call to java/util/Map::forEach → KILLED
1.1
Location : lambda$close$1
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:descriptionList()] Replaced integer subtraction with addition → KILLED
2.2
Location : lambda$close$1
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:descriptionList()] Replaced integer subtraction with addition → KILLED
1.1
Location : lambda$close$1
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:descriptionList()] removed call to java/util/Deque::forEach → KILLED
1.1
Location : close
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:fluency()] replaced return value with null for com/mastercard/test/flow/assrt/filter/cli/Cli$DescriptionList::close → KILLED
1.1
Location : item
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:indexedTaggedList()] replaced return value with null for com/mastercard/test/flow/assrt/filter/cli/Cli$IndexedTaggedList::item → KILLED
1.1
Location : lambda$close$0
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:indexedTaggedList()] replaced int return with 0 for com/mastercard/test/flow/assrt/filter/cli/Cli$IndexedTaggedList::lambda$close$0 → KILLED
1.1
Location : close
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:indexedTaggedList()] Replaced integer addition with subtraction → KILLED
1.1
Location : close
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:indexedTaggedList()] removed call to java/util/List::forEach → KILLED
1.1
Location : lambda$close$4
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:indexedTaggedList()] Replaced integer addition with subtraction → KILLED
1.1
Location : lambda$close$4
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:indexedTaggedList()] Replaced integer subtraction with addition → KILLED
2.2
Location : lambda$close$4
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:indexedTaggedList()] Replaced integer subtraction with addition → KILLED
3.3
Location : lambda$close$4
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:indexedTaggedList()] Replaced integer subtraction with addition → KILLED
1.1
Location : lambda$close$4
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:indexedTaggedList()] removed call to java/util/List::forEach → KILLED
1.1
Location : lambda$close$4
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:indexedTaggedList()] removed call to java/util/Deque::forEach → KILLED
2.2
Location : lambda$close$4
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:indexedTaggedList()] Replaced integer subtraction with addition → KILLED
1.1
Location : lambda$null$3
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:indexedTaggedList()] removed call to java/util/List::forEach → KILLED
1.1
Location : close
Killed by : com.mastercard.test.flow.assrt.filter.cli.CliTest.[engine:junit-jupiter]/[class:com.mastercard.test.flow.assrt.filter.cli.CliTest]/[method:fluency()] replaced return value with null for com/mastercard/test/flow/assrt/filter/cli/Cli$IndexedTaggedList::close → KILLED