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/jenkins1980267209040335069.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  13273      0 --:--:-- --:--:-- --:--:-- 13273
+ 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 32 kB/s)
[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml (14 kB at 22 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 20 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 247 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 496 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 494 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:  5.933 s
[INFO] Finished at: 2023-12-13T12:53:09+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.278 s
[INFO] Finished at: 2023-12-13T12:53:15+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-20231213.010100-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-20231213.010100-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-20231213.010749-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-20231213.010749-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-20231213.010100-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-20231213.010100-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
[60] INFO EntryPoint - /builds/.m2/repository/org/jacoco/org.jacoco.core/0.8.7/org.jacoco.core-0.8.7.jar
[62] INFO EntryPoint - /builds/.m2/repository/org/jacoco/org.jacoco.agent/0.8.7/org.jacoco.agent-0.8.7-runtime.jar
[63] INFO EntryPoint - /builds/.m2/repository/commons-io/commons-io/2.15.1/commons-io-2.15.1.jar
[63] INFO EntryPoint - /builds/.m2/repository/org/pitest/pitest-entry/1.6.7/pitest-entry-1.6.7.jar
[81] INFO EntryPoint - /builds/.m2/repository/org/pitest/pitest/1.6.7/pitest-1.6.7.jar
[82] INFO EntryPoint - /builds/.m2/repository/org/pitest/pitest/1.6.7/pitest-1.6.7.jar
[83] INFO EntryPoint - /builds/.m2/repository/org/pitest/pitest-entry/1.6.7/pitest-entry-1.6.7.jar
[83] INFO EntryPoint - /builds/.m2/repository/eu/stamp-project/descartes/1.2.4/descartes-1.2.4.jar
[84] INFO EntryPoint - /builds/.m2/repository/org/pitest/pitest-junit5-plugin/0.8/pitest-junit5-plugin-0.8.jar
[85] INFO EntryPoint - /builds/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.3.2/junit-jupiter-api-5.3.2.jar
[85] INFO EntryPoint - /builds/.m2/repository/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.jar
[6067] 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
[6721] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean(aPackage.ClassResourcesTest): null
[6723] INFO Main - Fixing: null
[7014] 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
[7618] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean_0,aPackage.ClassResourcesTest#testAssertionErrorBoolean_1,aPackage.ClassResourcesTest#testAssertionErrorBoolean
[7780] 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
[8394] 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]
[8532] 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
[9088] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive(aPackage.ClassResourcesTest): expected:<32> but was:<23>
[9089] INFO Main - Fixing: expected:<32> but was:<23>
[9291] 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
[9703] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive,aPackage.ClassResourcesTest#testAssertionErrorPrimitive_0,aPackage.ClassResourcesTest#testAssertionErrorPrimitive_1
[9808] 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
[10197] 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.055 sec
Running eu.stamp.project.assertfixer.asserts.AssertFixerTest
[10798] 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
[11355] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean(aPackage.ClassResourcesTest): null
[11521] 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
[12005] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean_0,aPackage.ClassResourcesTest#testAssertionErrorBoolean_1,aPackage.ClassResourcesTest#testAssertionErrorBoolean
[12308] 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
[12853] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean
[13256] 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
[13807] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive(aPackage.ClassResourcesTest): expected:<32> but was:<23>
[13957] 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
[14357] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive,aPackage.ClassResourcesTest#testAssertionErrorPrimitive_0,aPackage.ClassResourcesTest#testAssertionErrorPrimitive_1
[14649] 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
[15117] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive
[15483] 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
[15894] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testRemoveTryCatchBlock(aPackage.ClassResourcesTest): Expecting exception: IndexOutOfBoundsException
[16014] 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
[16385] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testRemoveTryCatchBlock
[16638] 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
[17034] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testRemoveTryCatchBlock
[17378] 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
[17758] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAddExpectedExceptionAnonymous(aPackage.ClassResourcesTest): null
[18069] 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
[18429] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAddExpectedExceptionAnonymous
[18722] 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
[19094] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedExceptionAnonymous(aPackage.ClassResourcesTest): null
[19368] 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
[19750] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedExceptionAnonymous
[20008] 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
[20435] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAddTryCatchFail(aPackage.ClassResourcesTest): null
[20672] 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
[21073] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAddTryCatchFail
[21326] 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
[21727] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedException(aPackage.ClassResourcesTest): null
[21913] 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
[22277] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedException
[22483] 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
[22841] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testNegativeInfinity(aPackage.ClassResourcesTest): expected:<Infinity> but was:<-Infinity>
[22928] 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
[23317] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testNegativeInfinity_0,aPackage.ClassResourcesTest#testNegativeInfinity_1,aPackage.ClassResourcesTest#testNegativeInfinity
[23497] 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
[23849] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testNegativeInfinity
[24081] 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
[24527] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorArray(aPackage.ClassResourcesTest): arrays first differed at element [0]; expected:<32> but was:<23>
[24623] 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
[25217] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorArray_0,aPackage.ClassResourcesTest#testAssertionErrorArray,aPackage.ClassResourcesTest#testAssertionErrorArray_1
[25385] 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
[25734] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorArray
[26004] 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
[26385] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedExceptionWithForwardReference(aPackage.ClassResourcesTest): null
[26604] 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
[27037] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedExceptionWithForwardReference
[27249] 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
[27601] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertSame(aPackage.ClassResourcesTest): expected same:<Infinity> was not:<-Infinity>
[27696] 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
[28093] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertSame_1,aPackage.ClassResourcesTest#testAssertSame_0,aPackage.ClassResourcesTest#testAssertSame
[28236] 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
[28622] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertSame
[28819] 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
[29182] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorField(aPackage.ClassResourcesTest): expected:<0.0> but was:<NaN>
[29267] 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
[29677] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorField,aPackage.ClassResourcesTest#testAssertionErrorField_1,aPackage.ClassResourcesTest#testAssertionErrorField_0
[29847] 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
[30245] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorField
[30454] 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
[30877] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testPositiveInfinity(aPackage.ClassResourcesTest): expected:<-Infinity> but was:<Infinity>
[30971] 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
[31398] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testPositiveInfinity_1,aPackage.ClassResourcesTest#testPositiveInfinity,aPackage.ClassResourcesTest#testPositiveInfinity_0
[31529] 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
[31861] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testPositiveInfinity
Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 21.535 sec
Running eu.stamp.project.assertfixer.util.CounterTest
[32053] 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
[32454] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean(aPackage.ClassResourcesTest): null
[32538] 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
[32921] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean_0,aPackage.ClassResourcesTest#testAssertionErrorBoolean_1,aPackage.ClassResourcesTest#testAssertionErrorBoolean
[33058] 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
[33469] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorBoolean
[33479] 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
[33805] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive(aPackage.ClassResourcesTest): expected:<32> but was:<23>
[33875] 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
[34241] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive,aPackage.ClassResourcesTest#testAssertionErrorPrimitive_0,aPackage.ClassResourcesTest#testAssertionErrorPrimitive_1
[34378] 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
[34721] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorPrimitive
[34738] 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
[35081] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorArray(aPackage.ClassResourcesTest): arrays first differed at element [0]; expected:<32> but was:<23>
[35140] 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
[35541] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorArray_0,aPackage.ClassResourcesTest#testAssertionErrorArray,aPackage.ClassResourcesTest#testAssertionErrorArray_1
[35667] 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
[36005] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAssertionErrorArray
[36019] 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
[36365] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAddTryCatchFail(aPackage.ClassResourcesTest): null
[36510] 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
[36973] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testAddTryCatchFail
[36984] 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
[37326] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedException(aPackage.ClassResourcesTest): null
[37467] 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
[37826] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testReplaceExpectedException
[37844] 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
[38205] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testRemoveTryCatchBlock(aPackage.ClassResourcesTest): Expecting exception: IndexOutOfBoundsException
[38249] 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
[38614] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testRemoveTryCatchBlock
[38740] 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
[39089] INFO EntryPoint - Test has been run: aPackage.ClassResourcesTest#testRemoveTryCatchBlock
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 7.395 sec

Results :

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

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