Skip to content

Console Output

Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on sos-builder01-ubuntu18 (lin) in workspace /builds/workspace/AssertFixer
[WS-CLEANUP] Deleting project workspace...
[WS-CLEANUP] Deferred wipeout is used...
[WS-CLEANUP] Done
The recommended git tool is: NONE
No credentials specified
Wiping out workspace first.
Cloning the remote Git repository
Cloning repository https://github.com/STAMP-project/AssertFixer.git
 > git init /builds/workspace/AssertFixer # timeout=10
Fetching upstream changes from https://github.com/STAMP-project/AssertFixer.git
 > git --version # timeout=10
 > git --version # 'git version 2.17.1'
 > git fetch --tags --progress -- https://github.com/STAMP-project/AssertFixer.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git config remote.origin.url https://github.com/STAMP-project/AssertFixer.git # timeout=10
 > git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10
Avoid second fetch
 > git rev-parse refs/remotes/origin/master^{commit} # timeout=10
Checking out Revision 923c86599265bb5af99ed2ecd7089ea9335b3da3 (refs/remotes/origin/master)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 923c86599265bb5af99ed2ecd7089ea9335b3da3 # timeout=10
Commit message: "update pom"
 > git rev-list --no-walk 923c86599265bb5af99ed2ecd7089ea9335b3da3 # timeout=10
[AssertFixer] $ /bin/sh -xe /tmp/jenkins1293968419933411590.sh
+ curl https://spoon.gforge.inria.fr/jenkins/inject_spoon_snapshot.py
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100  2376  100  2376    0     0  13894      0 --:--:-- --:--:-- --:--:-- 13894
+ python3 -c #! /bin/python3
"""Script for injecting the latest SNAPSHOT version of Spoon into all pom.xml
files it finds in the curren tworking directory or any subdirectory.

Requires the ``defusedxml`` package to be installed separately.

This script is compatible with Python 3.5+
"""
import xml.etree.ElementTree as ET
import subprocess
import pathlib

from typing import Optional

SPOON_SNAPSHOT_REPO = """
<repository>
    <id>spoon-snapshot-repo</id>
    <name>Maven Repository for Spoon Snapshots</name>
    <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
    <snapshots/>
</repository>
"""
MAVEN_NAMESPACE = "http://maven.apache.org/POM/4.0.0"
NAMESPACES = {"": MAVEN_NAMESPACE}

MAVEN_VERSIONS_COMMAND = "mvn -B -U versions:use-latest-versions -DallowSnapshots -Dincludes=fr.inria.gforge.spoon".split()
PURGE_LOCAL_REPO_COMMAND = "mvn -B -U dependency:purge-local-repository -DmanualInclude='fr.inria.gforge.spoon:spoon-core' -DsnapshotsOnly=true".split()


def main():
    ET.register_namespace("", MAVEN_NAMESPACE)
    pom_file = pathlib.Path("pom.xml")
    inject_snapshot_repo(pom_file)
    subprocess.run(MAVEN_VERSIONS_COMMAND, cwd=str(pom_file.parent))
    subprocess.run(PURGE_LOCAL_REPO_COMMAND, cwd=str(pom_file.parent))


def inject_snapshot_repo(pom_file: pathlib.Path) -> None:
    tree = ET.parse(str(pom_file))
    root = tree.getroot()

    repositories = root.find(in_maven_namespace("repositories"))
    if not repositories:
        repositories = ET.fromstring("<repositories></repositories>")
        root.append(repositories)

    snapshot_repo = ET.fromstring(SPOON_SNAPSHOT_REPO)
    snapshot_repo_url = snapshot_repo.find("url").text

    for repo in repositories.findall(in_maven_namespace("repository")):
        url = repo.find(in_maven_namespace("url")).text
        if url == snapshot_repo_url:
            return

    repositories.append(snapshot_repo)

    tree.write(str(pom_file))


def in_maven_namespace(tag: str) -> str:
    """Wrap the tag in the default Maven namespace.

    If porting this script to Python 3.6+, then this method can be removed and
    one can instead search with a default namespace like so:

    someElement.find(tag, namespaces={"": MAVEN_NAMESPACE})

    This does not appear to work in Python 3.5
    """
    return "{{{}}}{}".format(MAVEN_NAMESPACE, tag)


if __name__ == "__main__":
    main()
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[INFO] Scanning for projects...
[INFO] Inspecting build with total of 1 modules...
[INFO] Installing Nexus Staging features:
[INFO]   ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin
[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml
[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml
[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml (14 kB at 22 kB/s)
[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml (21 kB at 31 kB/s)
[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/versions-maven-plugin/maven-metadata.xml
[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/versions-maven-plugin/maven-metadata.xml (1.2 kB at 24 kB/s)
[INFO] 
[INFO] -------------------< eu.stamp-project:assert-fixer >--------------------
[INFO] Building eu.stamp-project:assert-fixer 1.0.10-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- versions-maven-plugin:2.16.2:use-latest-versions (default-cli) @ assert-fixer ---
[INFO] Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml
[INFO] Downloading from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml
[INFO] Downloading from sonatype-nexus-snapshots: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml
[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml (10 kB at 240 kB/s)
[INFO] Downloaded from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml (292 B at 316 B/s)
[WARNING] Could not transfer metadata fr.inria.gforge.spoon:spoon-core/maven-metadata.xml from/to sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots): Transfer failed for https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml 502 Bad Gateway
[INFO] Updated fr.inria.gforge.spoon:spoon-core:jar:10.1.0 to version 10.4.3-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  6.303 s
[INFO] Finished at: 2023-12-05T12:53:10+01:00
[INFO] ------------------------------------------------------------------------
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[INFO] Scanning for projects...
[INFO] Inspecting build with total of 1 modules...
[INFO] Installing Nexus Staging features:
[INFO]   ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin
[INFO] 
[INFO] -------------------< eu.stamp-project:assert-fixer >--------------------
[INFO] Building eu.stamp-project:assert-fixer 1.0.10-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- maven-dependency-plugin:2.8:purge-local-repository (default-cli) @ assert-fixer ---
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  3.479 s
[INFO] Finished at: 2023-12-05T12:53:16+01:00
[INFO] ------------------------------------------------------------------------
+ mvn clean test
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[INFO] Scanning for projects...
[INFO] Inspecting build with total of 1 modules...
[INFO] Installing Nexus Staging features:
[INFO]   ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin
[INFO] 
[INFO] -------------------< eu.stamp-project:assert-fixer >--------------------
[INFO] Building eu.stamp-project:assert-fixer 1.0.10-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/10.4.3-SNAPSHOT/spoon-core-10.4.3-20231205.010115-1.pom
Downloaded from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/10.4.3-SNAPSHOT/spoon-core-10.4.3-20231205.010115-1.pom (0 B at 0 B/s)
Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/10.4.3-SNAPSHOT/spoon-pom-10.4.3-20231205.010758-1.pom
Downloaded from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/10.4.3-SNAPSHOT/spoon-pom-10.4.3-20231205.010758-1.pom (0 B at 0 B/s)
Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/10.4.3-SNAPSHOT/spoon-core-10.4.3-20231205.010115-1.jar
Downloaded from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/10.4.3-SNAPSHOT/spoon-core-10.4.3-20231205.010115-1.jar (0 B at 0 B/s)
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ assert-fixer ---
[INFO] 
[INFO] --- maven-enforcer-plugin:1.0:enforce (enforce-maven) @ assert-fixer ---
[INFO] 
[INFO] --- jacoco-maven-plugin:0.8.7:prepare-agent (default) @ assert-fixer ---
[INFO] argLine set to -javaagent:/builds/.m2/repository/org/jacoco/org.jacoco.agent/0.8.7/org.jacoco.agent-0.8.7-runtime.jar=destfile=/builds/workspace/AssertFixer/target/jacoco.exec,excludes=**/fr/inria/spirals/test4repair/*
[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ assert-fixer ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ assert-fixer ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 12 source files to /builds/workspace/AssertFixer/target/classes
[WARNING] /builds/workspace/AssertFixer/src/main/java/eu/stamp/project/assertfixer/test/TestRunner.java: Some input files use unchecked or unsafe operations.
[WARNING] /builds/workspace/AssertFixer/src/main/java/eu/stamp/project/assertfixer/test/TestRunner.java: Recompile with -Xlint:unchecked for details.
[INFO] 
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ assert-fixer ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ assert-fixer ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 5 source files to /builds/workspace/AssertFixer/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ assert-fixer ---
[INFO] Surefire report directory: /builds/workspace/AssertFixer/target/surefire-reports

-------------------------------------------------------
 T E S T S
-------------------------------------------------------
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Running eu.stamp.project.assertfixer.MainTest
[0] INFO EntryPoint - Path to runner Classes: /builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar
[71] INFO EntryPoint - /builds/.m2/repository/org/jacoco/org.jacoco.core/0.8.7/org.jacoco.core-0.8.7.jar
[73] INFO EntryPoint - /builds/.m2/repository/org/jacoco/org.jacoco.agent/0.8.7/org.jacoco.agent-0.8.7-runtime.jar
[75] INFO EntryPoint - /builds/.m2/repository/commons-io/commons-io/2.15.1/commons-io-2.15.1.jar
[75] INFO EntryPoint - /builds/.m2/repository/org/pitest/pitest-entry/1.6.7/pitest-entry-1.6.7.jar
[98] INFO EntryPoint - /builds/.m2/repository/org/pitest/pitest/1.6.7/pitest-1.6.7.jar
[98] INFO EntryPoint - /builds/.m2/repository/org/pitest/pitest/1.6.7/pitest-1.6.7.jar
[99] INFO EntryPoint - /builds/.m2/repository/org/pitest/pitest-entry/1.6.7/pitest-entry-1.6.7.jar
[100] INFO EntryPoint - /builds/.m2/repository/eu/stamp-project/descartes/1.2.4/descartes-1.2.4.jar
[101] INFO EntryPoint - /builds/.m2/repository/org/pitest/pitest-junit5-plugin/0.8/pitest-junit5-plugin-0.8.jar
[114] INFO EntryPoint - /builds/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.3.2/junit-jupiter-api-5.3.2.jar
[118] INFO EntryPoint - /builds/.m2/repository/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.jar
[6823] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorBoolean]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorBoolean
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[7920] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean(aPackage.ClassResourcesTest): null
[7927] INFO Main - Fixing: null
[8266] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorBoolean:testAssertionErrorBoolean_0:testAssertionErrorBoolean_1]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorBoolean:testAssertionErrorBoolean_0:testAssertionErrorBoolean_1
Saving 1 observations... Saved!
Saving 1 observations... Saved!
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[8683] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean_0,aPackage.ClassResourcesTest#testAssertionErrorBoolean_1,aPackage.ClassResourcesTest#testAssertionErrorBoolean
[8822] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorBoolean]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorBoolean
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[9218] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean(aPackage.ClassResourcesTest): eu/stamp/project/assertfixer/asserts/log/Logger,aPackage.ClassResourcesTest#null(aPackage.ClassResourcesTest): eu/stamp/project/assertfixer/asserts/log/Logger
[aPackage.ClassResourcesTest#testAssertionErrorBoolean(aPackage.ClassResourcesTest): eu/stamp/project/assertfixer/asserts/log/Logger, aPackage.ClassResourcesTest#null(aPackage.ClassResourcesTest): eu/stamp/project/assertfixer/asserts/log/Logger]
[9375] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorPrimitive]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorPrimitive
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[9771] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive(aPackage.ClassResourcesTest): expected:<32> but was:<23>
[9774] INFO Main - Fixing: expected:<32> but was:<23>
[9990] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorPrimitive:testAssertionErrorPrimitive_0:testAssertionErrorPrimitive_1]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorPrimitive:testAssertionErrorPrimitive_0:testAssertionErrorPrimitive_1
Saving 1 observations... Saved!
Saving 1 observations... Saved!
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[10371] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive,aPackage.ClassResourcesTest#testAssertionErrorPrimitive_0,aPackage.ClassResourcesTest#testAssertionErrorPrimitive_1
[10467] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorPrimitive]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorPrimitive
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[10854] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive(aPackage.ClassResourcesTest): eu/stamp/project/assertfixer/asserts/log/Logger,aPackage.ClassResourcesTest#null(aPackage.ClassResourcesTest): eu/stamp/project/assertfixer/asserts/log/Logger
[aPackage.ClassResourcesTest#testAssertionErrorPrimitive(aPackage.ClassResourcesTest): eu/stamp/project/assertfixer/asserts/log/Logger, aPackage.ClassResourcesTest#null(aPackage.ClassResourcesTest): eu/stamp/project/assertfixer/asserts/log/Logger]
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 11.829 sec
Running eu.stamp.project.assertfixer.asserts.AssertFixerTest
[11499] INFO EntryPoint - Run: [java, -classpath, /builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorBoolean]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorBoolean
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[11903] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean(aPackage.ClassResourcesTest): null
[12105] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/workspace/AssertFixer/target/classes:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorBoolean:testAssertionErrorBoolean_0:testAssertionErrorBoolean_1]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorBoolean:testAssertionErrorBoolean_0:testAssertionErrorBoolean_1
Saving 1 observations... Saved!
Saving 1 observations... Saved!
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[12727] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean_0,aPackage.ClassResourcesTest#testAssertionErrorBoolean_1,aPackage.ClassResourcesTest#testAssertionErrorBoolean
[13117] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorBoolean]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorBoolean
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[13651] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean
[14093] INFO EntryPoint - Run: [java, -classpath, /builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorPrimitive]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorPrimitive
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[14438] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive(aPackage.ClassResourcesTest): expected:<32> but was:<23>
[14603] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/workspace/AssertFixer/target/classes:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorPrimitive:testAssertionErrorPrimitive_0:testAssertionErrorPrimitive_1]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorPrimitive:testAssertionErrorPrimitive_0:testAssertionErrorPrimitive_1
Saving 1 observations... Saved!
Saving 1 observations... Saved!
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[14994] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive,aPackage.ClassResourcesTest#testAssertionErrorPrimitive_0,aPackage.ClassResourcesTest#testAssertionErrorPrimitive_1
[15248] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorPrimitive]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorPrimitive
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[15719] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive
[16072] INFO EntryPoint - Run: [java, -classpath, /builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testRemoveTryCatchBlock]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testRemoveTryCatchBlock
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[16480] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testRemoveTryCatchBlock(aPackage.ClassResourcesTest): Expecting exception: IndexOutOfBoundsException
[16596] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testRemoveTryCatchBlock]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testRemoveTryCatchBlock
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[16968] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testRemoveTryCatchBlock
[17199] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testRemoveTryCatchBlock]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testRemoveTryCatchBlock
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[17563] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testRemoveTryCatchBlock
[17851] INFO EntryPoint - Run: [java, -classpath, /builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAddExpectedExceptionAnonymous]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAddExpectedExceptionAnonymous
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[18206] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAddExpectedExceptionAnonymous(aPackage.ClassResourcesTest): null
[18469] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAddExpectedExceptionAnonymous]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAddExpectedExceptionAnonymous
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[18834] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAddExpectedExceptionAnonymous
[19109] INFO EntryPoint - Run: [java, -classpath, /builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testReplaceExpectedExceptionAnonymous]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testReplaceExpectedExceptionAnonymous
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[19501] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedExceptionAnonymous(aPackage.ClassResourcesTest): null
[19735] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testReplaceExpectedExceptionAnonymous]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testReplaceExpectedExceptionAnonymous
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[20077] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedExceptionAnonymous
[20323] INFO EntryPoint - Run: [java, -classpath, /builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAddTryCatchFail]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAddTryCatchFail
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[20722] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAddTryCatchFail(aPackage.ClassResourcesTest): null
[20926] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAddTryCatchFail]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAddTryCatchFail
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[21326] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAddTryCatchFail
[21554] INFO EntryPoint - Run: [java, -classpath, /builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testReplaceExpectedException]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testReplaceExpectedException
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[21890] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedException(aPackage.ClassResourcesTest): null
[22072] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testReplaceExpectedException]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testReplaceExpectedException
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[22454] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedException
[22712] INFO EntryPoint - Run: [java, -classpath, /builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testNegativeInfinity]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testNegativeInfinity
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[23191] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testNegativeInfinity(aPackage.ClassResourcesTest): expected:<Infinity> but was:<-Infinity>
[23295] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/workspace/AssertFixer/target/classes:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testNegativeInfinity:testNegativeInfinity_0:testNegativeInfinity_1]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testNegativeInfinity:testNegativeInfinity_0:testNegativeInfinity_1
Saving 1 observations... Saved!
Saving 1 observations... Saved!
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[23681] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testNegativeInfinity_0,aPackage.ClassResourcesTest#testNegativeInfinity_1,aPackage.ClassResourcesTest#testNegativeInfinity
[23870] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testNegativeInfinity]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testNegativeInfinity
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[24382] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testNegativeInfinity
[24610] INFO EntryPoint - Run: [java, -classpath, /builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorArray]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorArray
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[24963] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorArray(aPackage.ClassResourcesTest): arrays first differed at element [0]; expected:<32> but was:<23>
[25058] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/workspace/AssertFixer/target/classes:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorArray:testAssertionErrorArray_0:testAssertionErrorArray_1]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorArray:testAssertionErrorArray_0:testAssertionErrorArray_1
WARNING: this test may be flaky
WARNING: this test may be flaky
WARNING: this test may be flaky
WARNING: this test may be flaky
WARNING: this test may be flaky
WARNING: this test may be flaky
Saving 3 observations... Saved!
Saving 3 observations... Saved!
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[25538] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorArray_0,aPackage.ClassResourcesTest#testAssertionErrorArray,aPackage.ClassResourcesTest#testAssertionErrorArray_1
[25715] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorArray]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorArray
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[26081] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorArray
[26276] INFO EntryPoint - Run: [java, -classpath, /builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testReplaceExpectedExceptionWithForwardReference]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testReplaceExpectedExceptionWithForwardReference
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[26652] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedExceptionWithForwardReference(aPackage.ClassResourcesTest): null
[26838] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testReplaceExpectedExceptionWithForwardReference]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testReplaceExpectedExceptionWithForwardReference
java.lang.NullPointerException
	at aPackage.ClassResourcesTest.throwNPE(ClassResourcesTest.java:24)
	at aPackage.ClassResourcesTest.testReplaceExpectedExceptionWithForwardReference(ClassResourcesTest.java:78)
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.base/java.lang.reflect.Method.invoke(Method.java:566)
	at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59)
	at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
	at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56)
	at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
	at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
	at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100)
	at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366)
	at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103)
	at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63)
	at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331)
	at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79)
	at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329)
	at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66)
	at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293)
	at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
	at org.junit.runners.ParentRunner.run(ParentRunner.java:413)
	at org.junit.runners.Suite.runChild(Suite.java:128)
	at org.junit.runners.Suite.runChild(Suite.java:27)
	at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331)
	at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79)
	at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329)
	at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66)
	at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293)
	at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
	at org.junit.runners.ParentRunner.run(ParentRunner.java:413)
	at eu.stamp_project.testrunner.runner.JUnit4Runner.run(JUnit4Runner.java:63)
	at eu.stamp_project.testrunner.runner.JUnit4Runner.main(JUnit4Runner.java:27)
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[27448] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedExceptionWithForwardReference
[27679] INFO EntryPoint - Run: [java, -classpath, /builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertSame]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertSame
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[28021] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertSame(aPackage.ClassResourcesTest): expected same:<Infinity> was not:<-Infinity>
[28100] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/workspace/AssertFixer/target/classes:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertSame:testAssertSame_0:testAssertSame_1]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertSame:testAssertSame_0:testAssertSame_1
Saving 1 observations... Saved!
Saving 1 observations... Saved!
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[28471] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertSame_1,aPackage.ClassResourcesTest#testAssertSame_0,aPackage.ClassResourcesTest#testAssertSame
[28600] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertSame]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertSame
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[28945] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertSame
[29170] INFO EntryPoint - Run: [java, -classpath, /builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorField]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorField
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[29635] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorField(aPackage.ClassResourcesTest): expected:<0.0> but was:<NaN>
[29719] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/workspace/AssertFixer/target/classes:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorField:testAssertionErrorField_0:testAssertionErrorField_1]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorField:testAssertionErrorField_0:testAssertionErrorField_1
Saving 1 observations... Saved!
Saving 1 observations... Saved!
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[30333] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorField,aPackage.ClassResourcesTest#testAssertionErrorField_1,aPackage.ClassResourcesTest#testAssertionErrorField_0
[30489] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorField]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorField
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[30865] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorField
[31037] INFO EntryPoint - Run: [java, -classpath, /builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testPositiveInfinity]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testPositiveInfinity
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[31405] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testPositiveInfinity(aPackage.ClassResourcesTest): expected:<-Infinity> but was:<Infinity>
[31489] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/workspace/AssertFixer/target/classes:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testPositiveInfinity:testPositiveInfinity_0:testPositiveInfinity_1]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testPositiveInfinity:testPositiveInfinity_0:testPositiveInfinity_1
Saving 1 observations... Saved!
Saving 1 observations... Saved!
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[31945] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testPositiveInfinity_1,aPackage.ClassResourcesTest#testPositiveInfinity,aPackage.ClassResourcesTest#testPositiveInfinity_0
[32069] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testPositiveInfinity]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testPositiveInfinity
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[32425] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testPositiveInfinity
Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 21.451 sec
Running eu.stamp.project.assertfixer.util.CounterTest
[32624] INFO EntryPoint - Run: [java, -classpath, /builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorBoolean]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorBoolean
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[32985] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean(aPackage.ClassResourcesTest): null
[33049] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/workspace/AssertFixer/target/classes:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorBoolean:testAssertionErrorBoolean_0:testAssertionErrorBoolean_1]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorBoolean:testAssertionErrorBoolean_0:testAssertionErrorBoolean_1
Saving 1 observations... Saved!
Saving 1 observations... Saved!
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[33476] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean_0,aPackage.ClassResourcesTest#testAssertionErrorBoolean_1,aPackage.ClassResourcesTest#testAssertionErrorBoolean
[33608] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorBoolean]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorBoolean
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[34022] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean
[34033] INFO EntryPoint - Run: [java, -classpath, /builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorPrimitive]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorPrimitive
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[34374] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive(aPackage.ClassResourcesTest): expected:<32> but was:<23>
[34445] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/workspace/AssertFixer/target/classes:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorPrimitive:testAssertionErrorPrimitive_0:testAssertionErrorPrimitive_1]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorPrimitive:testAssertionErrorPrimitive_0:testAssertionErrorPrimitive_1
Saving 1 observations... Saved!
Saving 1 observations... Saved!
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[34887] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive,aPackage.ClassResourcesTest#testAssertionErrorPrimitive_0,aPackage.ClassResourcesTest#testAssertionErrorPrimitive_1
[35029] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorPrimitive]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorPrimitive
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[35434] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive
[35450] INFO EntryPoint - Run: [java, -classpath, /builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorArray]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorArray
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[35985] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorArray(aPackage.ClassResourcesTest): arrays first differed at element [0]; expected:<32> but was:<23>
[36048] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/workspace/AssertFixer/target/classes:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorArray:testAssertionErrorArray_0:testAssertionErrorArray_1]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorArray:testAssertionErrorArray_0:testAssertionErrorArray_1
WARNING: this test may be flaky
WARNING: this test may be flaky
WARNING: this test may be flaky
WARNING: this test may be flaky
WARNING: this test may be flaky
WARNING: this test may be flaky
Saving 3 observations... Saved!
Saving 3 observations... Saved!
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[36658] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorArray_0,aPackage.ClassResourcesTest#testAssertionErrorArray,aPackage.ClassResourcesTest#testAssertionErrorArray_1
[36791] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAssertionErrorArray]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAssertionErrorArray
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[37206] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorArray
[37215] INFO EntryPoint - Run: [java, -classpath, /builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAddTryCatchFail]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAddTryCatchFail
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[37549] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAddTryCatchFail(aPackage.ClassResourcesTest): null
[37699] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testAddTryCatchFail]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testAddTryCatchFail
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[38065] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAddTryCatchFail
[38081] INFO EntryPoint - Run: [java, -classpath, /builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testReplaceExpectedException]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testReplaceExpectedException
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[38427] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedException(aPackage.ClassResourcesTest): null
[38589] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testReplaceExpectedException]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testReplaceExpectedException
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[38941] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedException
[38951] INFO EntryPoint - Run: [java, -classpath, /builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:target/assert-fixer/spooned-classes/:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testRemoveTryCatchBlock]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testRemoveTryCatchBlock
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[39296] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testRemoveTryCatchBlock(aPackage.ClassResourcesTest): Expecting exception: IndexOutOfBoundsException
[39357] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testRemoveTryCatchBlock]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testRemoveTryCatchBlock
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[39750] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testRemoveTryCatchBlock
[39900] INFO EntryPoint - Run: [java, -classpath, target/assert-fixer/spooned-classes/:/builds/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/builds/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/builds/workspace/AssertFixer/target/classes:target/dependency-binary:/builds/.m2/repository/eu/stamp-project/test-runner/3.0.0/test-runner-3.0.0.jar, eu.stamp_project.testrunner.runner.JUnit4Runner, --class, aPackage.ClassResourcesTest, --tests, testRemoveTryCatchBlock]
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Parsing --class aPackage.ClassResourcesTest --tests testRemoveTryCatchBlock
File saved to the following path: /builds/workspace/AssertFixer/target/TestResult.dat
[40282] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testRemoveTryCatchBlock
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 8.032 sec

Results :

Tests run: 15, Failures: 0, Errors: 0, Skipped: 0

[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  54.602 s
[INFO] Finished at: 2023-12-05T12:54:13+01:00
[INFO] ------------------------------------------------------------------------
Finished: SUCCESS