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/jenkins10405084205896037433.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  13655      0 --:--:-- --:--:-- --:--:-- 13655
+ 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/codehaus/mojo/maven-metadata.xml
[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml
[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml (21 kB at 29 kB/s)
[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml (14 kB at 20 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 sonatype-nexus-snapshots: 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] Downloaded from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml (10 kB at 160 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 516 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 514 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.126 s
[INFO] Finished at: 2023-12-04T12: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.480 s
[INFO] Finished at: 2023-12-04T12: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-20231204.010109-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-20231204.010109-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-20231204.010753-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-20231204.010753-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-20231204.010109-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-20231204.010109-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
[65] INFO EntryPoint - /builds/.m2/repository/org/jacoco/org.jacoco.core/0.8.7/org.jacoco.core-0.8.7.jar
[68] INFO EntryPoint - /builds/.m2/repository/org/jacoco/org.jacoco.agent/0.8.7/org.jacoco.agent-0.8.7-runtime.jar
[69] INFO EntryPoint - /builds/.m2/repository/commons-io/commons-io/2.15.1/commons-io-2.15.1.jar
[69] INFO EntryPoint - /builds/.m2/repository/org/pitest/pitest-entry/1.6.7/pitest-entry-1.6.7.jar
[88] INFO EntryPoint - /builds/.m2/repository/org/pitest/pitest/1.6.7/pitest-1.6.7.jar
[89] INFO EntryPoint - /builds/.m2/repository/org/pitest/pitest/1.6.7/pitest-1.6.7.jar
[90] INFO EntryPoint - /builds/.m2/repository/org/pitest/pitest-entry/1.6.7/pitest-entry-1.6.7.jar
[94] INFO EntryPoint - /builds/.m2/repository/eu/stamp-project/descartes/1.2.4/descartes-1.2.4.jar
[95] INFO EntryPoint - /builds/.m2/repository/org/pitest/pitest-junit5-plugin/0.8/pitest-junit5-plugin-0.8.jar
[96] INFO EntryPoint - /builds/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.3.2/junit-jupiter-api-5.3.2.jar
[102] INFO EntryPoint - /builds/.m2/repository/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.jar
[6440] 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
[7011] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean(aPackage.ClassResourcesTest): null
[7013] INFO Main - Fixing: null
[7311] 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
[7689] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean_0,aPackage.ClassResourcesTest#testAssertionErrorBoolean_1,aPackage.ClassResourcesTest#testAssertionErrorBoolean
[7804] 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
[8211] 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]
[8359] 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
[8752] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive(aPackage.ClassResourcesTest): expected:<32> but was:<23>
[8754] INFO Main - Fixing: expected:<32> but was:<23>
[8967] 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
[9355] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive,aPackage.ClassResourcesTest#testAssertionErrorPrimitive_0,aPackage.ClassResourcesTest#testAssertionErrorPrimitive_1
[9447] 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
[9820] 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: 10.694 sec
Running eu.stamp.project.assertfixer.asserts.AssertFixerTest
[10446] 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
[10999] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean(aPackage.ClassResourcesTest): null
[11222] 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
[11775] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean_0,aPackage.ClassResourcesTest#testAssertionErrorBoolean_1,aPackage.ClassResourcesTest#testAssertionErrorBoolean
[12152] 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
[12522] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean
[12948] 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
[13342] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive(aPackage.ClassResourcesTest): expected:<32> but was:<23>
[13492] 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
[14042] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive,aPackage.ClassResourcesTest#testAssertionErrorPrimitive_0,aPackage.ClassResourcesTest#testAssertionErrorPrimitive_1
[14336] 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
[14802] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive
[15148] 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
[15522] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testRemoveTryCatchBlock(aPackage.ClassResourcesTest): Expecting exception: IndexOutOfBoundsException
[15632] 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
[15999] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testRemoveTryCatchBlock
[16254] 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
[16643] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testRemoveTryCatchBlock
[16968] 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
[17364] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAddExpectedExceptionAnonymous(aPackage.ClassResourcesTest): null
[17729] 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
[18143] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAddExpectedExceptionAnonymous
[18449] 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
[18847] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedExceptionAnonymous(aPackage.ClassResourcesTest): null
[19169] 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
[19560] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedExceptionAnonymous
[19807] 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
[20210] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAddTryCatchFail(aPackage.ClassResourcesTest): null
[20399] 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
[20821] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAddTryCatchFail
[21050] 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
[21510] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedException(aPackage.ClassResourcesTest): null
[21702] 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
[22061] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedException
[22266] 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
[22610] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testNegativeInfinity(aPackage.ClassResourcesTest): expected:<Infinity> but was:<-Infinity>
[22703] 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
[23094] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testNegativeInfinity_0,aPackage.ClassResourcesTest#testNegativeInfinity_1,aPackage.ClassResourcesTest#testNegativeInfinity
[23274] 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
[23657] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testNegativeInfinity
[23880] 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
[24230] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorArray(aPackage.ClassResourcesTest): arrays first differed at element [0]; expected:<32> but was:<23>
[24321] 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
[24733] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorArray_0,aPackage.ClassResourcesTest#testAssertionErrorArray,aPackage.ClassResourcesTest#testAssertionErrorArray_1
[24885] 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
[25409] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorArray
[25609] 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
[25979] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedExceptionWithForwardReference(aPackage.ClassResourcesTest): null
[26136] 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
[26538] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedExceptionWithForwardReference
[26788] 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
[27139] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertSame(aPackage.ClassResourcesTest): expected same:<Infinity> was not:<-Infinity>
[27243] 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
[27643] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertSame_1,aPackage.ClassResourcesTest#testAssertSame_0,aPackage.ClassResourcesTest#testAssertSame
[27815] 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
[28390] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertSame
[28630] 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
[29017] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorField(aPackage.ClassResourcesTest): expected:<0.0> but was:<NaN>
[29107] 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
[29513] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorField,aPackage.ClassResourcesTest#testAssertionErrorField_1,aPackage.ClassResourcesTest#testAssertionErrorField_0
[29662] 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
[30061] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorField
[30242] 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
[30569] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testPositiveInfinity(aPackage.ClassResourcesTest): expected:<-Infinity> but was:<Infinity>
[30666] 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
[31166] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testPositiveInfinity_1,aPackage.ClassResourcesTest#testPositiveInfinity,aPackage.ClassResourcesTest#testPositiveInfinity_0
[31329] 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
[31730] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testPositiveInfinity
Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 21.759 sec
Running eu.stamp.project.assertfixer.util.CounterTest
[31927] 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
[32282] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean(aPackage.ClassResourcesTest): null
[32346] 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
[32740] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean_0,aPackage.ClassResourcesTest#testAssertionErrorBoolean_1,aPackage.ClassResourcesTest#testAssertionErrorBoolean
[32886] 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
[33261] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean
[33274] 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
[33605] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive(aPackage.ClassResourcesTest): expected:<32> but was:<23>
[33665] 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
[34053] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive,aPackage.ClassResourcesTest#testAssertionErrorPrimitive_0,aPackage.ClassResourcesTest#testAssertionErrorPrimitive_1
[34184] 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
[34537] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive
[34550] 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
[34898] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorArray(aPackage.ClassResourcesTest): arrays first differed at element [0]; expected:<32> but was:<23>
[34959] 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
[35473] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorArray_0,aPackage.ClassResourcesTest#testAssertionErrorArray,aPackage.ClassResourcesTest#testAssertionErrorArray_1
[35587] 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
[36013] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorArray
[36020] 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
[36345] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAddTryCatchFail(aPackage.ClassResourcesTest): null
[36464] 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
[36817] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAddTryCatchFail
[36827] 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
[37153] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedException(aPackage.ClassResourcesTest): null
[37271] 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
[37614] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedException
[37631] 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
[37965] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testRemoveTryCatchBlock(aPackage.ClassResourcesTest): Expecting exception: IndexOutOfBoundsException
[38032] 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
[38401] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testRemoveTryCatchBlock
[38508] 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
[38873] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testRemoveTryCatchBlock
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 7.34 sec

Results :

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

[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  51.375 s
[INFO] Finished at: 2023-12-04T12:54:10+01:00
[INFO] ------------------------------------------------------------------------
Finished: SUCCESS