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/jenkins17418322371216186530.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  11704      0 --:--:-- --:--:-- --:--:-- 11704
+ 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 21 kB/s)
[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml (21 kB at 30 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 23 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 182 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 469 B/s)
[INFO] Downloaded from sonatype-nexus-snapshots: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml (292 B at 463 B/s)
[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.097 s
[INFO] Finished at: 2023-11-28T12: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.689 s
[INFO] Finished at: 2023-11-28T12: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-20231128.010108-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-20231128.010108-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-20231128.010759-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-20231128.010759-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-20231128.010108-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-20231128.010108-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
[72] INFO EntryPoint - /builds/.m2/repository/org/jacoco/org.jacoco.core/0.8.7/org.jacoco.core-0.8.7.jar
[74] 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.0/commons-io-2.15.0.jar
[75] INFO EntryPoint - /builds/.m2/repository/org/pitest/pitest-entry/1.6.7/pitest-entry-1.6.7.jar
[94] INFO EntryPoint - /builds/.m2/repository/org/pitest/pitest/1.6.7/pitest-1.6.7.jar
[95] INFO EntryPoint - /builds/.m2/repository/org/pitest/pitest/1.6.7/pitest-1.6.7.jar
[95] INFO EntryPoint - /builds/.m2/repository/org/pitest/pitest-entry/1.6.7/pitest-entry-1.6.7.jar
[98] INFO EntryPoint - /builds/.m2/repository/eu/stamp-project/descartes/1.2.4/descartes-1.2.4.jar
[99] INFO EntryPoint - /builds/.m2/repository/org/pitest/pitest-junit5-plugin/0.8/pitest-junit5-plugin-0.8.jar
[100] INFO EntryPoint - /builds/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.3.2/junit-jupiter-api-5.3.2.jar
[100] INFO EntryPoint - /builds/.m2/repository/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.jar
[6490] 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
[7602] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean(aPackage.ClassResourcesTest): null
[7604] INFO Main - Fixing: null
[7964] 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
[8486] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean_0,aPackage.ClassResourcesTest#testAssertionErrorBoolean_1,aPackage.ClassResourcesTest#testAssertionErrorBoolean
[8667] 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
[9111] 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]
[9268] 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
[9656] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive(aPackage.ClassResourcesTest): expected:<32> but was:<23>
[9657] INFO Main - Fixing: expected:<32> but was:<23>
[9873] 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
[10279] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive,aPackage.ClassResourcesTest#testAssertionErrorPrimitive_0,aPackage.ClassResourcesTest#testAssertionErrorPrimitive_1
[10391] 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
[10779] 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.662 sec
Running eu.stamp.project.assertfixer.asserts.AssertFixerTest
[11377] 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
[11743] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean(aPackage.ClassResourcesTest): null
[11928] 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
[12455] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean_0,aPackage.ClassResourcesTest#testAssertionErrorBoolean_1,aPackage.ClassResourcesTest#testAssertionErrorBoolean
[12816] 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
[13369] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean
[13780] 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
[14318] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive(aPackage.ClassResourcesTest): expected:<32> but was:<23>
[14468] 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
[14973] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive,aPackage.ClassResourcesTest#testAssertionErrorPrimitive_0,aPackage.ClassResourcesTest#testAssertionErrorPrimitive_1
[15219] 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
[15586] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive
[15929] 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
[16329] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testRemoveTryCatchBlock(aPackage.ClassResourcesTest): Expecting exception: IndexOutOfBoundsException
[16451] 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
[16831] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testRemoveTryCatchBlock
[17077] 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
[17576] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testRemoveTryCatchBlock
[17912] 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
[18308] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAddExpectedExceptionAnonymous(aPackage.ClassResourcesTest): null
[18647] 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
[19038] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAddExpectedExceptionAnonymous
[19385] 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
[19750] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedExceptionAnonymous(aPackage.ClassResourcesTest): null
[20018] 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
[20403] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedExceptionAnonymous
[20667] 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
[21030] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAddTryCatchFail(aPackage.ClassResourcesTest): null
[21233] 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
[21634] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAddTryCatchFail
[21881] 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
[22315] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedException(aPackage.ClassResourcesTest): null
[22507] 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
[22890] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedException
[23118] 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
[23498] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testNegativeInfinity(aPackage.ClassResourcesTest): expected:<Infinity> but was:<-Infinity>
[23593] 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
[24018] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testNegativeInfinity_0,aPackage.ClassResourcesTest#testNegativeInfinity_1,aPackage.ClassResourcesTest#testNegativeInfinity
[24195] 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
[24558] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testNegativeInfinity
[24767] 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
[25139] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorArray(aPackage.ClassResourcesTest): arrays first differed at element [0]; expected:<32> but was:<23>
[25252] 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
[25671] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorArray_0,aPackage.ClassResourcesTest#testAssertionErrorArray,aPackage.ClassResourcesTest#testAssertionErrorArray_1
[25853] 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
[26226] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorArray
[26428] 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
[26776] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedExceptionWithForwardReference(aPackage.ClassResourcesTest): null
[26966] 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
[27394] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedExceptionWithForwardReference
[27632] 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
[28050] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertSame(aPackage.ClassResourcesTest): expected same:<Infinity> was not:<-Infinity>
[28145] 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
[28562] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertSame_1,aPackage.ClassResourcesTest#testAssertSame_0,aPackage.ClassResourcesTest#testAssertSame
[28711] 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
[29094] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertSame
[29326] 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
[29707] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorField(aPackage.ClassResourcesTest): expected:<0.0> but was:<NaN>
[29782] 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
[30188] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorField,aPackage.ClassResourcesTest#testAssertionErrorField_1,aPackage.ClassResourcesTest#testAssertionErrorField_0
[30330] 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
[30671] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorField
[30890] 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
[31342] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testPositiveInfinity(aPackage.ClassResourcesTest): expected:<-Infinity> but was:<Infinity>
[31430] 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
[31841] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testPositiveInfinity_1,aPackage.ClassResourcesTest#testPositiveInfinity,aPackage.ClassResourcesTest#testPositiveInfinity_0
[31985] 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
[32509] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testPositiveInfinity
Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 21.611 sec
Running eu.stamp.project.assertfixer.util.CounterTest
[32737] 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
[33113] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean(aPackage.ClassResourcesTest): null
[33189] 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
[33589] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean_0,aPackage.ClassResourcesTest#testAssertionErrorBoolean_1,aPackage.ClassResourcesTest#testAssertionErrorBoolean
[33746] 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
[34322] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean
[34343] 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
[34735] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive(aPackage.ClassResourcesTest): expected:<32> but was:<23>
[34816] 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
[35197] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive,aPackage.ClassResourcesTest#testAssertionErrorPrimitive_0,aPackage.ClassResourcesTest#testAssertionErrorPrimitive_1
[35354] 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
[35809] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive
[35830] 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
[36257] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorArray(aPackage.ClassResourcesTest): arrays first differed at element [0]; expected:<32> but was:<23>
[36322] 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
[36745] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorArray_0,aPackage.ClassResourcesTest#testAssertionErrorArray,aPackage.ClassResourcesTest#testAssertionErrorArray_1
[36867] 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
[37237] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorArray
[37254] 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
[37602] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAddTryCatchFail(aPackage.ClassResourcesTest): null
[37745] 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
[38122] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAddTryCatchFail
[38142] 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
[38551] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedException(aPackage.ClassResourcesTest): null
[38714] 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
[39098] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedException
[39116] 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
[39458] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testRemoveTryCatchBlock(aPackage.ClassResourcesTest): Expecting exception: IndexOutOfBoundsException
[39527] 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
[39903] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testRemoveTryCatchBlock
[40055] 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
[40442] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testRemoveTryCatchBlock
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 8.129 sec

Results :

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

[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  53.910 s
[INFO] Finished at: 2023-11-28T12:54:13+01:00
[INFO] ------------------------------------------------------------------------
Finished: SUCCESS