From 5f3c51c30c6adeeb48e390e7f9591266275acf70 Mon Sep 17 00:00:00 2001 From: Johannes Veihelmann Date: Tue, 14 Nov 2023 10:29:06 +0100 Subject: [PATCH 01/44] TS-36294 Add new maven plugin mojo to batch convert .exec files to testwise coverage. --- .../maven-exec-file-project/.gitignore | 2 + .../.mvn/wrapper/maven-wrapper.properties | 18 + .../tia-maven/maven-exec-file-project/mvnw | 316 + .../maven-exec-file-project/mvnw.cmd | 188 + .../tia-maven/maven-exec-file-project/pom.xml | 69 + .../src/main/java/foo/SUT.java | 17 + .../src/test/java/foo/UnitTest.java | 1001 ++ .../src/test/java/foo/eightUnitTest.java | 23 + .../src/test/java/foo/fiveUnitTest.java | 23 + .../src/test/java/foo/fourUnitTest.java | 23 + .../src/test/java/foo/nineUnitTest.java | 23 + .../src/test/java/foo/sevenUnitTest.java | 23 + .../src/test/java/foo/sixUnitTest.java} | 9 +- .../src/test/java/foo/tenUnitTest.java | 23 + .../src/test/java/foo/threeUnitTest.java | 23 + .../src/test/java/foo/twoUnitTest.java | 23 + .../maven-exec-file-project/testwise-1.json | 8533 +++++++++++++++++ .../tia/TiaMavenCoverageConverterTest.java | 38 + .../tia/maven/TiaCoverageConvertMojo.java | 135 + 19 files changed, 10506 insertions(+), 4 deletions(-) create mode 100644 system-tests/tia-maven/maven-exec-file-project/.gitignore create mode 100644 system-tests/tia-maven/maven-exec-file-project/.mvn/wrapper/maven-wrapper.properties create mode 100644 system-tests/tia-maven/maven-exec-file-project/mvnw create mode 100644 system-tests/tia-maven/maven-exec-file-project/mvnw.cmd create mode 100644 system-tests/tia-maven/maven-exec-file-project/pom.xml create mode 100644 system-tests/tia-maven/maven-exec-file-project/src/main/java/foo/SUT.java create mode 100644 system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/UnitTest.java create mode 100644 system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/eightUnitTest.java create mode 100644 system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/fiveUnitTest.java create mode 100644 system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/fourUnitTest.java create mode 100644 system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/nineUnitTest.java create mode 100644 system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/sevenUnitTest.java rename system-tests/tia-maven/{maven-dump-local-project/src/test/java/foo/IntegIT.java => maven-exec-file-project/src/test/java/foo/sixUnitTest.java} (84%) create mode 100644 system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/tenUnitTest.java create mode 100644 system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/threeUnitTest.java create mode 100644 system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/twoUnitTest.java create mode 100644 system-tests/tia-maven/maven-exec-file-project/testwise-1.json create mode 100644 system-tests/tia-maven/src/test/java/com/teamscale/tia/TiaMavenCoverageConverterTest.java create mode 100644 teamscale-maven-plugin/src/main/java/com/teamscale/tia/maven/TiaCoverageConvertMojo.java diff --git a/system-tests/tia-maven/maven-exec-file-project/.gitignore b/system-tests/tia-maven/maven-exec-file-project/.gitignore new file mode 100644 index 000000000..c5078494e --- /dev/null +++ b/system-tests/tia-maven/maven-exec-file-project/.gitignore @@ -0,0 +1,2 @@ +target +.idea diff --git a/system-tests/tia-maven/maven-exec-file-project/.mvn/wrapper/maven-wrapper.properties b/system-tests/tia-maven/maven-exec-file-project/.mvn/wrapper/maven-wrapper.properties new file mode 100644 index 000000000..e83fa6959 --- /dev/null +++ b/system-tests/tia-maven/maven-exec-file-project/.mvn/wrapper/maven-wrapper.properties @@ -0,0 +1,18 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip +wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar diff --git a/system-tests/tia-maven/maven-exec-file-project/mvnw b/system-tests/tia-maven/maven-exec-file-project/mvnw new file mode 100644 index 000000000..5643201c7 --- /dev/null +++ b/system-tests/tia-maven/maven-exec-file-project/mvnw @@ -0,0 +1,316 @@ +#!/bin/sh +# ---------------------------------------------------------------------------- +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# ---------------------------------------------------------------------------- + +# ---------------------------------------------------------------------------- +# Maven Start Up Batch script +# +# Required ENV vars: +# ------------------ +# JAVA_HOME - location of a JDK home dir +# +# Optional ENV vars +# ----------------- +# M2_HOME - location of maven2's installed home dir +# MAVEN_OPTS - parameters passed to the Java VM when running Maven +# e.g. to debug Maven itself, use +# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 +# MAVEN_SKIP_RC - flag to disable loading of mavenrc files +# ---------------------------------------------------------------------------- + +if [ -z "$MAVEN_SKIP_RC" ] ; then + + if [ -f /usr/local/etc/mavenrc ] ; then + . /usr/local/etc/mavenrc + fi + + if [ -f /etc/mavenrc ] ; then + . /etc/mavenrc + fi + + if [ -f "$HOME/.mavenrc" ] ; then + . "$HOME/.mavenrc" + fi + +fi + +# OS specific support. $var _must_ be set to either true or false. +cygwin=false; +darwin=false; +mingw=false +case "`uname`" in + CYGWIN*) cygwin=true ;; + MINGW*) mingw=true;; + Darwin*) darwin=true + # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home + # See https://developer.apple.com/library/mac/qa/qa1170/_index.html + if [ -z "$JAVA_HOME" ]; then + if [ -x "/usr/libexec/java_home" ]; then + export JAVA_HOME="`/usr/libexec/java_home`" + else + export JAVA_HOME="/Library/Java/Home" + fi + fi + ;; +esac + +if [ -z "$JAVA_HOME" ] ; then + if [ -r /etc/gentoo-release ] ; then + JAVA_HOME=`java-config --jre-home` + fi +fi + +if [ -z "$M2_HOME" ] ; then + ## resolve links - $0 may be a link to maven's home + PRG="$0" + + # need this for relative symlinks + while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG="`dirname "$PRG"`/$link" + fi + done + + saveddir=`pwd` + + M2_HOME=`dirname "$PRG"`/.. + + # make it fully qualified + M2_HOME=`cd "$M2_HOME" && pwd` + + cd "$saveddir" + # echo Using m2 at $M2_HOME +fi + +# For Cygwin, ensure paths are in UNIX format before anything is touched +if $cygwin ; then + [ -n "$M2_HOME" ] && + M2_HOME=`cygpath --unix "$M2_HOME"` + [ -n "$JAVA_HOME" ] && + JAVA_HOME=`cygpath --unix "$JAVA_HOME"` + [ -n "$CLASSPATH" ] && + CLASSPATH=`cygpath --path --unix "$CLASSPATH"` +fi + +# For Mingw, ensure paths are in UNIX format before anything is touched +if $mingw ; then + [ -n "$M2_HOME" ] && + M2_HOME="`(cd "$M2_HOME"; pwd)`" + [ -n "$JAVA_HOME" ] && + JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`" +fi + +if [ -z "$JAVA_HOME" ]; then + javaExecutable="`which javac`" + if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then + # readlink(1) is not available as standard on Solaris 10. + readLink=`which readlink` + if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then + if $darwin ; then + javaHome="`dirname \"$javaExecutable\"`" + javaExecutable="`cd \"$javaHome\" && pwd -P`/javac" + else + javaExecutable="`readlink -f \"$javaExecutable\"`" + fi + javaHome="`dirname \"$javaExecutable\"`" + javaHome=`expr "$javaHome" : '\(.*\)/bin'` + JAVA_HOME="$javaHome" + export JAVA_HOME + fi + fi +fi + +if [ -z "$JAVACMD" ] ; then + if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + else + JAVACMD="`\\unset -f command; \\command -v java`" + fi +fi + +if [ ! -x "$JAVACMD" ] ; then + echo "Error: JAVA_HOME is not defined correctly." >&2 + echo " We cannot execute $JAVACMD" >&2 + exit 1 +fi + +if [ -z "$JAVA_HOME" ] ; then + echo "Warning: JAVA_HOME environment variable is not set." +fi + +CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher + +# traverses directory structure from process work directory to filesystem root +# first directory with .mvn subdirectory is considered project base directory +find_maven_basedir() { + + if [ -z "$1" ] + then + echo "Path not specified to find_maven_basedir" + return 1 + fi + + basedir="$1" + wdir="$1" + while [ "$wdir" != '/' ] ; do + if [ -d "$wdir"/.mvn ] ; then + basedir=$wdir + break + fi + # workaround for JBEAP-8937 (on Solaris 10/Sparc) + if [ -d "${wdir}" ]; then + wdir=`cd "$wdir/.."; pwd` + fi + # end of workaround + done + echo "${basedir}" +} + +# concatenates all lines of a file +concat_lines() { + if [ -f "$1" ]; then + echo "$(tr -s '\n' ' ' < "$1")" + fi +} + +BASE_DIR=`find_maven_basedir "$(pwd)"` +if [ -z "$BASE_DIR" ]; then + exit 1; +fi + +########################################################################################## +# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central +# This allows using the maven wrapper in projects that prohibit checking in binary data. +########################################################################################## +if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then + if [ "$MVNW_VERBOSE" = true ]; then + echo "Found .mvn/wrapper/maven-wrapper.jar" + fi +else + if [ "$MVNW_VERBOSE" = true ]; then + echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..." + fi + if [ -n "$MVNW_REPOURL" ]; then + jarUrl="$MVNW_REPOURL/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar" + else + jarUrl="https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar" + fi + while IFS="=" read key value; do + case "$key" in (wrapperUrl) jarUrl="$value"; break ;; + esac + done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties" + if [ "$MVNW_VERBOSE" = true ]; then + echo "Downloading from: $jarUrl" + fi + wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" + if $cygwin; then + wrapperJarPath=`cygpath --path --windows "$wrapperJarPath"` + fi + + if command -v wget > /dev/null; then + if [ "$MVNW_VERBOSE" = true ]; then + echo "Found wget ... using wget" + fi + if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then + wget "$jarUrl" -O "$wrapperJarPath" || rm -f "$wrapperJarPath" + else + wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD "$jarUrl" -O "$wrapperJarPath" || rm -f "$wrapperJarPath" + fi + elif command -v curl > /dev/null; then + if [ "$MVNW_VERBOSE" = true ]; then + echo "Found curl ... using curl" + fi + if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then + curl -o "$wrapperJarPath" "$jarUrl" -f + else + curl --user $MVNW_USERNAME:$MVNW_PASSWORD -o "$wrapperJarPath" "$jarUrl" -f + fi + + else + if [ "$MVNW_VERBOSE" = true ]; then + echo "Falling back to using Java to download" + fi + javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java" + # For Cygwin, switch paths to Windows format before running javac + if $cygwin; then + javaClass=`cygpath --path --windows "$javaClass"` + fi + if [ -e "$javaClass" ]; then + if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then + if [ "$MVNW_VERBOSE" = true ]; then + echo " - Compiling MavenWrapperDownloader.java ..." + fi + # Compiling the Java class + ("$JAVA_HOME/bin/javac" "$javaClass") + fi + if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then + # Running the downloader + if [ "$MVNW_VERBOSE" = true ]; then + echo " - Running MavenWrapperDownloader.java ..." + fi + ("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR") + fi + fi + fi +fi +########################################################################################## +# End of extension +########################################################################################## + +export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"} +if [ "$MVNW_VERBOSE" = true ]; then + echo $MAVEN_PROJECTBASEDIR +fi +MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS" + +# For Cygwin, switch paths to Windows format before running java +if $cygwin; then + [ -n "$M2_HOME" ] && + M2_HOME=`cygpath --path --windows "$M2_HOME"` + [ -n "$JAVA_HOME" ] && + JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"` + [ -n "$CLASSPATH" ] && + CLASSPATH=`cygpath --path --windows "$CLASSPATH"` + [ -n "$MAVEN_PROJECTBASEDIR" ] && + MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"` +fi + +# Provide a "standardized" way to retrieve the CLI args that will +# work with both Windows and non-Windows executions. +MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@" +export MAVEN_CMD_LINE_ARGS + +WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain + +exec "$JAVACMD" \ + $MAVEN_OPTS \ + $MAVEN_DEBUG_OPTS \ + -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \ + "-Dmaven.home=${M2_HOME}" \ + "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \ + ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@" diff --git a/system-tests/tia-maven/maven-exec-file-project/mvnw.cmd b/system-tests/tia-maven/maven-exec-file-project/mvnw.cmd new file mode 100644 index 000000000..8a15b7f31 --- /dev/null +++ b/system-tests/tia-maven/maven-exec-file-project/mvnw.cmd @@ -0,0 +1,188 @@ +@REM ---------------------------------------------------------------------------- +@REM Licensed to the Apache Software Foundation (ASF) under one +@REM or more contributor license agreements. See the NOTICE file +@REM distributed with this work for additional information +@REM regarding copyright ownership. The ASF licenses this file +@REM to you under the Apache License, Version 2.0 (the +@REM "License"); you may not use this file except in compliance +@REM with the License. You may obtain a copy of the License at +@REM +@REM http://www.apache.org/licenses/LICENSE-2.0 +@REM +@REM Unless required by applicable law or agreed to in writing, +@REM software distributed under the License is distributed on an +@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +@REM KIND, either express or implied. See the License for the +@REM specific language governing permissions and limitations +@REM under the License. +@REM ---------------------------------------------------------------------------- + +@REM ---------------------------------------------------------------------------- +@REM Maven Start Up Batch script +@REM +@REM Required ENV vars: +@REM JAVA_HOME - location of a JDK home dir +@REM +@REM Optional ENV vars +@REM M2_HOME - location of maven2's installed home dir +@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands +@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending +@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven +@REM e.g. to debug Maven itself, use +@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 +@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files +@REM ---------------------------------------------------------------------------- + +@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on' +@echo off +@REM set title of command window +title %0 +@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on' +@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO% + +@REM set %HOME% to equivalent of $HOME +if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%") + +@REM Execute a user defined script before this one +if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre +@REM check for pre script, once with legacy .bat ending and once with .cmd ending +if exist "%USERPROFILE%\mavenrc_pre.bat" call "%USERPROFILE%\mavenrc_pre.bat" %* +if exist "%USERPROFILE%\mavenrc_pre.cmd" call "%USERPROFILE%\mavenrc_pre.cmd" %* +:skipRcPre + +@setlocal + +set ERROR_CODE=0 + +@REM To isolate internal variables from possible post scripts, we use another setlocal +@setlocal + +@REM ==== START VALIDATION ==== +if not "%JAVA_HOME%" == "" goto OkJHome + +echo. +echo Error: JAVA_HOME not found in your environment. >&2 +echo Please set the JAVA_HOME variable in your environment to match the >&2 +echo location of your Java installation. >&2 +echo. +goto error + +:OkJHome +if exist "%JAVA_HOME%\bin\java.exe" goto init + +echo. +echo Error: JAVA_HOME is set to an invalid directory. >&2 +echo JAVA_HOME = "%JAVA_HOME%" >&2 +echo Please set the JAVA_HOME variable in your environment to match the >&2 +echo location of your Java installation. >&2 +echo. +goto error + +@REM ==== END VALIDATION ==== + +:init + +@REM Find the project base dir, i.e. the directory that contains the folder ".mvn". +@REM Fallback to current working directory if not found. + +set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR% +IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir + +set EXEC_DIR=%CD% +set WDIR=%EXEC_DIR% +:findBaseDir +IF EXIST "%WDIR%"\.mvn goto baseDirFound +cd .. +IF "%WDIR%"=="%CD%" goto baseDirNotFound +set WDIR=%CD% +goto findBaseDir + +:baseDirFound +set MAVEN_PROJECTBASEDIR=%WDIR% +cd "%EXEC_DIR%" +goto endDetectBaseDir + +:baseDirNotFound +set MAVEN_PROJECTBASEDIR=%EXEC_DIR% +cd "%EXEC_DIR%" + +:endDetectBaseDir + +IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig + +@setlocal EnableExtensions EnableDelayedExpansion +for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a +@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS% + +:endReadAdditionalConfig + +SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe" +set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar" +set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain + +set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar" + +FOR /F "usebackq tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO ( + IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B +) + +@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central +@REM This allows using the maven wrapper in projects that prohibit checking in binary data. +if exist %WRAPPER_JAR% ( + if "%MVNW_VERBOSE%" == "true" ( + echo Found %WRAPPER_JAR% + ) +) else ( + if not "%MVNW_REPOURL%" == "" ( + SET DOWNLOAD_URL="%MVNW_REPOURL%/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar" + ) + if "%MVNW_VERBOSE%" == "true" ( + echo Couldn't find %WRAPPER_JAR%, downloading it ... + echo Downloading from: %DOWNLOAD_URL% + ) + + powershell -Command "&{"^ + "$webclient = new-object System.Net.WebClient;"^ + "if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^ + "$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^ + "}"^ + "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"^ + "}" + if "%MVNW_VERBOSE%" == "true" ( + echo Finished downloading %WRAPPER_JAR% + ) +) +@REM End of extension + +@REM Provide a "standardized" way to retrieve the CLI args that will +@REM work with both Windows and non-Windows executions. +set MAVEN_CMD_LINE_ARGS=%* + +%MAVEN_JAVA_EXE% ^ + %JVM_CONFIG_MAVEN_PROPS% ^ + %MAVEN_OPTS% ^ + %MAVEN_DEBUG_OPTS% ^ + -classpath %WRAPPER_JAR% ^ + "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" ^ + %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %* +if ERRORLEVEL 1 goto error +goto end + +:error +set ERROR_CODE=1 + +:end +@endlocal & set ERROR_CODE=%ERROR_CODE% + +if not "%MAVEN_SKIP_RC%"=="" goto skipRcPost +@REM check for post script, once with legacy .bat ending and once with .cmd ending +if exist "%USERPROFILE%\mavenrc_post.bat" call "%USERPROFILE%\mavenrc_post.bat" +if exist "%USERPROFILE%\mavenrc_post.cmd" call "%USERPROFILE%\mavenrc_post.cmd" +:skipRcPost + +@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on' +if "%MAVEN_BATCH_PAUSE%"=="on" pause + +if "%MAVEN_TERMINATE_CMD%"=="on" exit %ERROR_CODE% + +cmd /C exit /B %ERROR_CODE% diff --git a/system-tests/tia-maven/maven-exec-file-project/pom.xml b/system-tests/tia-maven/maven-exec-file-project/pom.xml new file mode 100644 index 000000000..b82fd8702 --- /dev/null +++ b/system-tests/tia-maven/maven-exec-file-project/pom.xml @@ -0,0 +1,69 @@ + + + 4.0.0 + + org.example + tia-maven + 1.0-SNAPSHOT + + + 1.8 + 1.8 + ${env.TEAMSCALE_PORT} + ${env.AGENT_VERSION} + junit-jupiter + false + + + + + org.junit.jupiter + junit-jupiter-engine + 5.8.2 + test + + + + com.teamscale + impacted-test-engine + ${tia.agent.version} + test + + + + + + + com.teamscale + teamscale-maven-plugin + ${tia.agent.version} + + + + prepare-tia-unit-test + prepare-tia-integration-test + testwise-coverage-converter + + + + + MyPartition + exec-file + true + false + + *foo.* + + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.2.1 + + + + + diff --git a/system-tests/tia-maven/maven-exec-file-project/src/main/java/foo/SUT.java b/system-tests/tia-maven/maven-exec-file-project/src/main/java/foo/SUT.java new file mode 100644 index 000000000..52533cf36 --- /dev/null +++ b/system-tests/tia-maven/maven-exec-file-project/src/main/java/foo/SUT.java @@ -0,0 +1,17 @@ +package foo; + +public class SUT { + + public void bla() { + System.out.println("bla"); + } + + public void foo() { + System.out.println("foo"); + } + + public void goo() { + System.out.println("goo"); + } + +} diff --git a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/UnitTest.java b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/UnitTest.java new file mode 100644 index 000000000..00c256a0f --- /dev/null +++ b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/UnitTest.java @@ -0,0 +1,1001 @@ +package bar; + +import org.junit.jupiter.api.Test; +import foo.SUT; + +public class UnitTest { + + @Test + public void itBla() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + @Test + public void itBla1() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo1() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo1() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + @Test + public void itBla2() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo2() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo2() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + @Test + public void itBla3() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itawdoooo() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo3() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + @Test + public void itBla4() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo4() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo5ppp() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla5ppp() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo5ppp() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo6() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla6() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo6() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo7() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla7() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo7() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo8() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla8() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo8() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo9() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla9() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo9() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo10() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla10() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo10() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo11() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla11() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo11() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo12() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla12() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo12() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo13() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla13() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo13() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo14() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla14() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo14() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo15() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla15() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo15() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo16() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla16() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo16() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo17() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla17() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo17() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo18() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla18() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo18() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itouihowd() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla19() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo19() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo19() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla20() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo20() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo20() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla21() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo21() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo21() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla22() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo22() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo22() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla23() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo23() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo23() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla24() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo24() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo24() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla25() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo25() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo25() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla2z() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo2z() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo2z() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla2g() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo2g() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo2g() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void assmethod() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo2h() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo2h() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla2h() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo2a() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo2a() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla2a() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoolol() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoolol() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBlalol() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo2i() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo2i() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla2i() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo2k() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo2k() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla2k() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo2l() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo2l() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla2l() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo31() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo31() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla31() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo41() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo41() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla41() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo42() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo42() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla42() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo43() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo43() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla43() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo44() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo44() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla44() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo45() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo45() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla45() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo46() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo46() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla46() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo47() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo47() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla47() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo487() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo487() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla487() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo49() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo49() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla49() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo4yy() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo4yy() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla4yy() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo4yx() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo4yx() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla4yx() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo4yc() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo4yc() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla4yc() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo4yv() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo4yv() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla4yv() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo4ya() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo4ya() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla4ya() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo4yq() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo4yq() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla4yq() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo4yw() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo4yw() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } @Test + public void itBla4yw() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo3() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itGoo4() throws Exception { + new SUT().goo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } +} diff --git a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/eightUnitTest.java b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/eightUnitTest.java new file mode 100644 index 000000000..3097d4002 --- /dev/null +++ b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/eightUnitTest.java @@ -0,0 +1,23 @@ +package bar; + +import org.junit.jupiter.api.Test; +import foo.SUT; + +public class eightUnitTest { + + @Test + public void itBla() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + +} diff --git a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/fiveUnitTest.java b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/fiveUnitTest.java new file mode 100644 index 000000000..335d53371 --- /dev/null +++ b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/fiveUnitTest.java @@ -0,0 +1,23 @@ +package bar; + +import org.junit.jupiter.api.Test; +import foo.SUT; + +public class fiveUnitTest { + + @Test + public void itBla() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + +} diff --git a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/fourUnitTest.java b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/fourUnitTest.java new file mode 100644 index 000000000..2c3bbfb38 --- /dev/null +++ b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/fourUnitTest.java @@ -0,0 +1,23 @@ +package bar; + +import org.junit.jupiter.api.Test; +import foo.SUT; + +public class fourUnitTest { + + @Test + public void itBla() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + +} diff --git a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/nineUnitTest.java b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/nineUnitTest.java new file mode 100644 index 000000000..57db8a36e --- /dev/null +++ b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/nineUnitTest.java @@ -0,0 +1,23 @@ +package bar; + +import org.junit.jupiter.api.Test; +import foo.SUT; + +public class nineUnitTest { + + @Test + public void itBla() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + +} diff --git a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/sevenUnitTest.java b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/sevenUnitTest.java new file mode 100644 index 000000000..164e48fdc --- /dev/null +++ b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/sevenUnitTest.java @@ -0,0 +1,23 @@ +package bar; + +import org.junit.jupiter.api.Test; +import foo.SUT; + +public class sevenUnitTest { + + @Test + public void itBla() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + +} diff --git a/system-tests/tia-maven/maven-dump-local-project/src/test/java/foo/IntegIT.java b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/sixUnitTest.java similarity index 84% rename from system-tests/tia-maven/maven-dump-local-project/src/test/java/foo/IntegIT.java rename to system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/sixUnitTest.java index 9015578b5..ac9b1e807 100644 --- a/system-tests/tia-maven/maven-dump-local-project/src/test/java/foo/IntegIT.java +++ b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/sixUnitTest.java @@ -1,22 +1,23 @@ package bar; import org.junit.jupiter.api.Test; - import foo.SUT; -public class IntegIT { +public class sixUnitTest { @Test public void itBla() throws Exception { new SUT().bla(); // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(2000); + Thread.sleep(10); } @Test public void itFoo() throws Exception { new SUT().foo(); // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(2000); + Thread.sleep(10); } + + } diff --git a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/tenUnitTest.java b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/tenUnitTest.java new file mode 100644 index 000000000..a3078c008 --- /dev/null +++ b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/tenUnitTest.java @@ -0,0 +1,23 @@ +package bar; + +import org.junit.jupiter.api.Test; +import foo.SUT; + +public class tenUnitTest { + + @Test + public void itBla() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + +} diff --git a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/threeUnitTest.java b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/threeUnitTest.java new file mode 100644 index 000000000..79b7c5cf0 --- /dev/null +++ b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/threeUnitTest.java @@ -0,0 +1,23 @@ +package bar; + +import org.junit.jupiter.api.Test; +import foo.SUT; + +public class threeUnitTest { + + @Test + public void itBla() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + +} diff --git a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/twoUnitTest.java b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/twoUnitTest.java new file mode 100644 index 000000000..257183a71 --- /dev/null +++ b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/twoUnitTest.java @@ -0,0 +1,23 @@ +package bar; + +import org.junit.jupiter.api.Test; +import foo.SUT; + +public class twoUnitTest { + + @Test + public void itBla() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + @Test + public void itFoo() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(10); + } + + +} diff --git a/system-tests/tia-maven/maven-exec-file-project/testwise-1.json b/system-tests/tia-maven/maven-exec-file-project/testwise-1.json new file mode 100644 index 000000000..0a7522cd6 --- /dev/null +++ b/system-tests/tia-maven/maven-exec-file-project/testwise-1.json @@ -0,0 +1,8533 @@ +{"tests":[ + { + "duration": 0.211, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/beightUnitTest/itBla()" + }, + { + "duration": 0.02, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/beightUnitTest/itFoo()" + }, + { + "duration": 0.02, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/beightUnitTest/itFoo()" + }, + { + "duration": 0.202, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bfiveUnitTest/itBla()" + }, + { + "duration": 0.021, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bfiveUnitTest/itFoo()" + }, + { + "duration": 0.021, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/bfiveUnitTest/itFoo()" + }, + { + "duration": 0.212, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bfourUnitTest/itBla()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bfourUnitTest/itFoo()" + }, + { + "duration": 0.03, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/bfourUnitTest/itFoo()" + }, + { + "duration": 0.181, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bnineUnitTest/itBla()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bnineUnitTest/itFoo()" + }, + { + "duration": 0.031, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/bnineUnitTest/itFoo()" + }, + { + "duration": 0.204, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bsevenUnitTest/itBla()" + }, + { + "duration": 0.027, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bsevenUnitTest/itFoo()" + }, + { + "duration": 0.027, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/bsevenUnitTest/itFoo()" + }, + { + "duration": 0.193, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bsixUnitTest/itBla()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bsixUnitTest/itFoo()" + }, + { + "duration": 0.018, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/bsixUnitTest/itFoo()" + }, + { + "duration": 0.196, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/btenUnitTest/itBla()" + }, + { + "duration": 0.023, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/btenUnitTest/itFoo()" + }, + { + "duration": 0.023, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/btenUnitTest/itFoo()" + }, + { + "duration": 0.199, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bthreeUnitTest/itBla()" + }, + { + "duration": 0.015, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bthreeUnitTest/itFoo()" + }, + { + "duration": 0.015, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/bthreeUnitTest/itFoo()" + }, + { + "duration": 0.176, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/btwoUnitTest/itBla()" + }, + { + "duration": 0.023, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/btwoUnitTest/itFoo()" + }, + { + "duration": 0.023, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/btwoUnitTest/itFoo()" + }, + { + "duration": 0.199, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itouihowd()" + }, + { + "duration": 0.026, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla1()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla2()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla3()" + }, + { + "duration": 0.02, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla4()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla6()" + }, + { + "duration": 0.035, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla7()" + }, + { + "duration": 0.028, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla8()" + }, + { + "duration": 0.02, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla9()" + }, + { + "duration": 0.021, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo1()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo2()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo3()" + }, + { + "duration": 0.032, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo4()" + }, + { + "duration": 0.033, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo6()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo7()" + }, + { + "duration": 0.037, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo8()" + }, + { + "duration": 0.021, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo9()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo1()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo2()" + }, + { + "duration": 0.022, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo3()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo4()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo6()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo7()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo8()" + }, + { + "duration": 0.034, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo9()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itawdoooo()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo()" + }, + { + "duration": 0.02, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla487()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla4ya()" + }, + { + "duration": 0.034, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla4yc()" + }, + { + "duration": 0.024, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla4yq()" + }, + { + "duration": 0.015, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla4yv()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla4yw()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla4yx()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla4yy()" + }, + { + "duration": 0.028, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBlalol()" + }, + { + "duration": 0.032, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo487()" + }, + { + "duration": 0.023, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo4ya()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo4yc()" + }, + { + "duration": 0.028, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo4yq()" + }, + { + "duration": 0.032, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo4yv()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo4yw()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo4yx()" + }, + { + "duration": 0.02, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo4yy()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoolol()" + }, + { + "duration": 0.02, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo487()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo4ya()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo4yc()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo4yq()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo4yv()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo4yw()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo4yx()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo4yy()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoolol()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo5ppp()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla5ppp()" + }, + { + "duration": 0.032, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo5ppp()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/assmethod()" + }, + { + "duration": 0.02, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla10()" + }, + { + "duration": 0.014, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla11()" + }, + { + "duration": 0.021, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla12()" + }, + { + "duration": 0.039, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla13()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla14()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla15()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla16()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla17()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla18()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla19()" + }, + { + "duration": 0.015, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla20()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla21()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla22()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla23()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla24()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla25()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla31()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla2a()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla2g()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla2h()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla2i()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla2k()" + }, + { + "duration": 0.014, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla2l()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla41()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla42()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla43()" + }, + { + "duration": 0.028, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla44()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla45()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla46()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla47()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla49()" + }, + { + "duration": 0.032, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itBla2z()" + }, + { + "duration": 0.027, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo10()" + }, + { + "duration": 0.023, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo11()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo12()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo13()" + }, + { + "duration": 0.028, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo14()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo15()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo16()" + }, + { + "duration": 0.028, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo17()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo18()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo19()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo20()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo21()" + }, + { + "duration": 0.026, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo22()" + }, + { + "duration": 0.025, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo23()" + }, + { + "duration": 0.021, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo24()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo25()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo31()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo2a()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo2g()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo2h()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo2i()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo2k()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo2l()" + }, + { + "duration": 0.028, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo41()" + }, + { + "duration": 0.021, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo42()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo43()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo44()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo45()" + }, + { + "duration": 0.015, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo46()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo47()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo49()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itFoo2z()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo10()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo11()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo12()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo13()" + }, + { + "duration": 0.028, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo14()" + }, + { + "duration": 0.02, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo15()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo16()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo17()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo18()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo19()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo20()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo21()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo22()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo23()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo24()" + }, + { + "duration": 0.027, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo25()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo31()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo2a()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo2g()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo2h()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo2i()" + }, + { + "duration": 0.015, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo2k()" + }, + { + "duration": 0.015, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo2l()" + }, + { + "duration": 0.014, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo41()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo42()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo43()" + }, + { + "duration": 0.015, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo44()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo45()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo46()" + }, + { + "duration": 0.015, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo47()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo49()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo2z()" + }, + { + "duration": 0.016, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/bUnitTest/itGoo2z()" + }, + { + "duration": 0.163, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/ceightUnitTest/itBla()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/ceightUnitTest/itFoo()" + }, + { + "duration": 0.031, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/ceightUnitTest/itFoo()" + }, + { + "duration": 0.184, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cfiveUnitTest/itBla()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cfiveUnitTest/itFoo()" + }, + { + "duration": 0.031, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/cfiveUnitTest/itFoo()" + }, + { + "duration": 0.173, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cfourUnitTest/itBla()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cfourUnitTest/itFoo()" + }, + { + "duration": 0.029, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/cfourUnitTest/itFoo()" + }, + { + "duration": 0.189, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cnineUnitTest/itBla()" + }, + { + "duration": 0.021, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cnineUnitTest/itFoo()" + }, + { + "duration": 0.021, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/cnineUnitTest/itFoo()" + }, + { + "duration": 0.188, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/csevenUnitTest/itBla()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/csevenUnitTest/itFoo()" + }, + { + "duration": 0.019, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/csevenUnitTest/itFoo()" + }, + { + "duration": 0.183, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/csixUnitTest/itBla()" + }, + { + "duration": 0.021, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/csixUnitTest/itFoo()" + }, + { + "duration": 0.021, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/csixUnitTest/itFoo()" + }, + { + "duration": 0.2, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/ctenUnitTest/itBla()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/ctenUnitTest/itFoo()" + }, + { + "duration": 0.031, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/ctenUnitTest/itFoo()" + }, + { + "duration": 0.196, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cthreeUnitTest/itBla()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cthreeUnitTest/itFoo()" + }, + { + "duration": 0.016, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/cthreeUnitTest/itFoo()" + }, + { + "duration": 0.191, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/ctwoUnitTest/itBla()" + }, + { + "duration": 0.027, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/ctwoUnitTest/itFoo()" + }, + { + "duration": 0.027, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/ctwoUnitTest/itFoo()" + }, + { + "duration": 0.228, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itouihowd()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla1()" + }, + { + "duration": 0.02, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla2()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla3()" + }, + { + "duration": 0.021, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla4()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla6()" + }, + { + "duration": 0.021, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla7()" + }, + { + "duration": 0.035, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla8()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla9()" + }, + { + "duration": 0.033, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo1()" + }, + { + "duration": 0.033, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo2()" + }, + { + "duration": 0.034, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo3()" + }, + { + "duration": 0.032, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo4()" + }, + { + "duration": 0.024, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo6()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo7()" + }, + { + "duration": 0.026, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo8()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo9()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo1()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo2()" + }, + { + "duration": 0.032, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo3()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo4()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo6()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo7()" + }, + { + "duration": 0.02, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo8()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo9()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itawdoooo()" + }, + { + "duration": 0.027, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla()" + }, + { + "duration": 0.032, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo()" + }, + { + "duration": 0.028, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla487()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla4ya()" + }, + { + "duration": 0.032, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla4yc()" + }, + { + "duration": 0.028, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla4yq()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla4yv()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla4yw()" + }, + { + "duration": 0.032, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla4yx()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla4yy()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBlalol()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo487()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo4ya()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo4yc()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo4yq()" + }, + { + "duration": 0.028, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo4yv()" + }, + { + "duration": 0.028, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo4yw()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo4yx()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo4yy()" + }, + { + "duration": 0.015, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoolol()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo487()" + }, + { + "duration": 0.026, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo4ya()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo4yc()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo4yq()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo4yv()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo4yw()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo4yx()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo4yy()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoolol()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo5ppp()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla5ppp()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo5ppp()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/assmethod()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla10()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla11()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla12()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla13()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla14()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla15()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla16()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla17()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla18()" + }, + { + "duration": 0.014, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla19()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla20()" + }, + { + "duration": 0.015, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla21()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla22()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla23()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla24()" + }, + { + "duration": 0.015, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla25()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla31()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla2a()" + }, + { + "duration": 0.02, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla2g()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla2h()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla2i()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla2k()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla2l()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla41()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla42()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla43()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla44()" + }, + { + "duration": 0.022, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla45()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla46()" + }, + { + "duration": 0.028, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla47()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla49()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itBla2z()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo10()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo11()" + }, + { + "duration": 0.032, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo12()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo13()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo14()" + }, + { + "duration": 0.026, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo15()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo16()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo17()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo18()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo19()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo20()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo21()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo22()" + }, + { + "duration": 0.026, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo23()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo24()" + }, + { + "duration": 0.032, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo25()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo31()" + }, + { + "duration": 0.028, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo2a()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo2g()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo2h()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo2i()" + }, + { + "duration": 0.015, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo2k()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo2l()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo41()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo42()" + }, + { + "duration": 0.014, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo43()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo44()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo45()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo46()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo47()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo49()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itFoo2z()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo10()" + }, + { + "duration": 0.024, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo11()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo12()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo13()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo14()" + }, + { + "duration": 0.015, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo15()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo16()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo17()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo18()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo19()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo20()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo21()" + }, + { + "duration": 0.014, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo22()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo23()" + }, + { + "duration": 0.014, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo24()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo25()" + }, + { + "duration": 0.014, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo31()" + }, + { + "duration": 0.015, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo2a()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo2g()" + }, + { + "duration": 0.014, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo2h()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo2i()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo2k()" + }, + { + "duration": 0.015, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo2l()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo41()" + }, + { + "duration": 0.013, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo42()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo43()" + }, + { + "duration": 0.02, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo44()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo45()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo46()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo47()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo49()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo2z()" + }, + { + "duration": 0.018, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/cUnitTest/itGoo2z()" + }, + { + "duration": 0.216, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/eightUnitTest/itBla()" + }, + { + "duration": 0.023, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/eightUnitTest/itFoo()" + }, + { + "duration": 0.023, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/eightUnitTest/itFoo()" + }, + { + "duration": 0.208, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/fiveUnitTest/itBla()" + }, + { + "duration": 0.021, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/fiveUnitTest/itFoo()" + }, + { + "duration": 0.021, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/fiveUnitTest/itFoo()" + }, + { + "duration": 0.191, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/fourUnitTest/itBla()" + }, + { + "duration": 0.033, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/fourUnitTest/itFoo()" + }, + { + "duration": 0.033, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/fourUnitTest/itFoo()" + }, + { + "duration": 0.184, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/nineUnitTest/itBla()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/nineUnitTest/itFoo()" + }, + { + "duration": 0.019, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/nineUnitTest/itFoo()" + }, + { + "duration": 0.198, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/sevenUnitTest/itBla()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/sevenUnitTest/itFoo()" + }, + { + "duration": 0.017, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/sevenUnitTest/itFoo()" + }, + { + "duration": 0.186, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/sixUnitTest/itBla()" + }, + { + "duration": 0.021, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/sixUnitTest/itFoo()" + }, + { + "duration": 0.021, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/sixUnitTest/itFoo()" + }, + { + "duration": 0.172, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/tenUnitTest/itBla()" + }, + { + "duration": 0.025, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/tenUnitTest/itFoo()" + }, + { + "duration": 0.025, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/tenUnitTest/itFoo()" + }, + { + "duration": 0.189, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/threeUnitTest/itBla()" + }, + { + "duration": 0.025, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/threeUnitTest/itFoo()" + }, + { + "duration": 0.025, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/threeUnitTest/itFoo()" + }, + { + "duration": 0.193, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/twoUnitTest/itBla()" + }, + { + "duration": 0.044, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/twoUnitTest/itFoo()" + }, + { + "duration": 0.044, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/twoUnitTest/itFoo()" + }, + { + "duration": 0.217, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itouihowd()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla1()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla2()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla3()" + }, + { + "duration": 0.023, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla4()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla6()" + }, + { + "duration": 0.02, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla7()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla8()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla9()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo1()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo2()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo3()" + }, + { + "duration": 0.021, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo4()" + }, + { + "duration": 0.028, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo6()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo7()" + }, + { + "duration": 0.025, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo8()" + }, + { + "duration": 0.024, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo9()" + }, + { + "duration": 0.033, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo1()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo2()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo3()" + }, + { + "duration": 0.032, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo4()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo6()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo7()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo8()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo9()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itawdoooo()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla()" + }, + { + "duration": 0.02, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla487()" + }, + { + "duration": 0.032, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla4ya()" + }, + { + "duration": 0.022, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla4yc()" + }, + { + "duration": 0.022, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla4yq()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla4yv()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla4yw()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla4yx()" + }, + { + "duration": 0.021, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla4yy()" + }, + { + "duration": 0.028, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBlalol()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo487()" + }, + { + "duration": 0.032, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo4ya()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo4yc()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo4yq()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo4yv()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo4yw()" + }, + { + "duration": 0.02, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo4yx()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo4yy()" + }, + { + "duration": 0.025, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoolol()" + }, + { + "duration": 0.021, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo487()" + }, + { + "duration": 0.015, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo4ya()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo4yc()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo4yq()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo4yv()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo4yw()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo4yx()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo4yy()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoolol()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo5ppp()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla5ppp()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo5ppp()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/assmethod()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla10()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla11()" + }, + { + "duration": 0.033, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla12()" + }, + { + "duration": 0.036, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla13()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla14()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla15()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla16()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla17()" + }, + { + "duration": 0.025, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla18()" + }, + { + "duration": 0.02, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla19()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla20()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla21()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla22()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla23()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla24()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla25()" + }, + { + "duration": 0.015, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla31()" + }, + { + "duration": 0.025, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla2a()" + }, + { + "duration": 0.021, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla2g()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla2h()" + }, + { + "duration": 0.032, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla2i()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla2k()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla2l()" + }, + { + "duration": 0.032, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla41()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla42()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla43()" + }, + { + "duration": 0.027, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla44()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla45()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla46()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla47()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla49()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,6-7", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itBla2z()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo10()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo11()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo12()" + }, + { + "duration": 0.028, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo13()" + }, + { + "duration": 0.026, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo14()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo15()" + }, + { + "duration": 0.015, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo16()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo17()" + }, + { + "duration": 0.019, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo18()" + }, + { + "duration": 0.015, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo19()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo20()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo21()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo22()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo23()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo24()" + }, + { + "duration": 0.027, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo25()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo31()" + }, + { + "duration": 0.028, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo2a()" + }, + { + "duration": 0.021, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo2g()" + }, + { + "duration": 0.02, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo2h()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo2i()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo2k()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo2l()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo41()" + }, + { + "duration": 0.028, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo42()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo43()" + }, + { + "duration": 0.021, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo44()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo45()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo46()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo47()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo49()" + }, + { + "duration": 0.021, + "paths": [ + { + "files": [ + { + "coveredLines": "3,10-11", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itFoo2z()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo10()" + }, + { + "duration": 0.035, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo11()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo12()" + }, + { + "duration": 0.035, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo13()" + }, + { + "duration": 0.028, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo14()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo15()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo16()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo17()" + }, + { + "duration": 0.031, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo18()" + }, + { + "duration": 0.027, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo19()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo20()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo21()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo22()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo23()" + }, + { + "duration": 0.02, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo24()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo25()" + }, + { + "duration": 0.015, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo31()" + }, + { + "duration": 0.018, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo2a()" + }, + { + "duration": 0.022, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo2g()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo2h()" + }, + { + "duration": 0.027, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo2i()" + }, + { + "duration": 0.03, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo2k()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo2l()" + }, + { + "duration": 0.015, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo41()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo42()" + }, + { + "duration": 0.015, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo43()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo44()" + }, + { + "duration": 0.015, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo45()" + }, + { + "duration": 0.029, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo46()" + }, + { + "duration": 0.016, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo47()" + }, + { + "duration": 0.017, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo49()" + }, + { + "duration": 0.014, + "paths": [ + { + "files": [ + { + "coveredLines": "3,14-15", + "fileName": "SUT.java" + } + ], + "path": "foo" + } + ], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo2z()" + }, + { + "duration": 0.014, + "paths": [], + "result": "PASSED", + "uniformPath": "bar/UnitTest/itGoo2z()" + }]} \ No newline at end of file diff --git a/system-tests/tia-maven/src/test/java/com/teamscale/tia/TiaMavenCoverageConverterTest.java b/system-tests/tia-maven/src/test/java/com/teamscale/tia/TiaMavenCoverageConverterTest.java new file mode 100644 index 000000000..70c624742 --- /dev/null +++ b/system-tests/tia-maven/src/test/java/com/teamscale/tia/TiaMavenCoverageConverterTest.java @@ -0,0 +1,38 @@ +package com.teamscale.tia; + +import org.conqat.lib.commons.filesystem.FileSystemUtils; +import org.conqat.lib.commons.io.ProcessUtils; +import org.conqat.lib.commons.system.SystemUtils; +import org.junit.jupiter.api.Test; + +import java.io.File; +import java.nio.file.Paths; + +import static org.assertj.core.api.Assertions.assertThat; +/** + * Tests the automatic conversion of .exec files to a testwise coverage report. + */ +public class TiaMavenCoverageConverterTest { + /** + * Starts a maven process with the reuseForks flag set to "false" and tiaMode "exec-file". + * Checks if the coverage can be converted to a testwise coverage report afterward. + */ + @Test + public void testMavenTia() throws Exception { + File workingDirectory = new File("maven-exec-file-project"); + String executable = "./mvnw"; + if (SystemUtils.isWindows()) { + executable = Paths.get("maven-exec-file-project", "mvnw.cmd").toUri().getPath(); + } + + ProcessUtils.ExecutionResult result = ProcessUtils.execute(new ProcessBuilder(executable, "clean", "verify").directory(workingDirectory)); + System.out.println(result.getStdout()); + File configFile = new File(Paths.get(workingDirectory.getAbsolutePath(), "target", "tia", "agent.log").toUri()); + String configContent = FileSystemUtils.readFile(configFile); + assertThat(configContent).isNotEmpty(); + assertThat(result.terminatedByTimeoutOrInterruption()).isFalse(); + assertThat(configContent).doesNotContain("Could not start http server on port"); + File testwiseCoverage = new File(Paths.get(workingDirectory.getAbsolutePath(), "target", "tia", "testwise-coverage-1.json").toUri()); + assertThat(testwiseCoverage).isNotEmpty(); + } +} diff --git a/teamscale-maven-plugin/src/main/java/com/teamscale/tia/maven/TiaCoverageConvertMojo.java b/teamscale-maven-plugin/src/main/java/com/teamscale/tia/maven/TiaCoverageConvertMojo.java new file mode 100644 index 000000000..50bdc92cb --- /dev/null +++ b/teamscale-maven-plugin/src/main/java/com/teamscale/tia/maven/TiaCoverageConvertMojo.java @@ -0,0 +1,135 @@ +package com.teamscale.tia.maven; + +import com.google.common.base.Strings; +import com.teamscale.jacoco.agent.options.AgentOptionParseException; +import com.teamscale.jacoco.agent.options.ClasspathUtils; +import com.teamscale.jacoco.agent.options.FilePatternResolver; +import com.teamscale.jacoco.agent.util.Benchmark; +import org.apache.maven.plugin.AbstractMojo; +import org.apache.maven.plugin.MojoFailureException; +import org.apache.maven.plugins.annotations.LifecyclePhase; +import org.apache.maven.plugins.annotations.Mojo; +import org.apache.maven.plugins.annotations.Parameter; +import org.apache.maven.plugins.annotations.ResolutionScope; +import shadow.com.teamscale.client.TestDetails; +import shadow.com.teamscale.report.EDuplicateClassFileBehavior; +import shadow.com.teamscale.report.ReportUtils; +import shadow.com.teamscale.report.testwise.ETestArtifactFormat; +import shadow.com.teamscale.report.testwise.TestwiseCoverageReportWriter; +import shadow.com.teamscale.report.testwise.jacoco.JaCoCoTestwiseReportGenerator; +import shadow.com.teamscale.report.testwise.model.TestExecution; +import shadow.com.teamscale.report.testwise.model.factory.TestInfoFactory; +import shadow.com.teamscale.report.util.ClasspathWildcardIncludeFilter; +import shadow.com.teamscale.report.util.CommandLineLogger; +import shadow.com.teamscale.report.util.ILogger; + +import java.io.File; +import java.io.IOException; +import java.nio.file.Paths; +import java.util.ArrayList; +import java.util.List; + +/** + * Batch converts all created .exec file reports into a testwise coverage report. + */ +@Mojo(name = "testwise-coverage-converter", defaultPhase = LifecyclePhase.VERIFY, + requiresDependencyResolution = ResolutionScope.RUNTIME, threadSafe = true) +public class TiaCoverageConvertMojo extends AbstractMojo { + /** + * Wildcard include patterns to apply during JaCoCo's traversal of class files. + */ + @Parameter(defaultValue = "**") + public String[] includes; + /** + * Wildcard exclude patterns to apply during JaCoCo's traversal of class files. + */ + @Parameter() + public String[] excludes; + + /** + * After how many tests the testwise coverage should be split into multiple reports (Default is 5000)." + */ + @Parameter(defaultValue = "5000") + public int splitAfter; + + /** + * The project build directory (usually: {@code ./target}). Provided automatically by Maven. + */ + @Parameter(defaultValue = "${project.build.directory}") + public String projectBuildDir; + + /** + * The output directory of the testwise coverage reports. + */ + @Parameter() + public String outputFile; + + ILogger logger = new CommandLineLogger(); + + @Override + public void execute() throws MojoFailureException { + if(Strings.isNullOrEmpty(outputFile)){ + outputFile = Paths.get(projectBuildDir, "tia", "testwise-coverage.json").toString(); + } + List reportFiles = new ArrayList<>(); + reportFiles.add(Paths.get(projectBuildDir, "tia").toAbsolutePath().resolve("reports").toFile()); + try (Benchmark ignored = new Benchmark("Generating the testwise coverage report")) { + JaCoCoTestwiseReportGenerator generator = createJaCoCoTestwiseReportGenerator(); + TestInfoFactory testInfoFactory = createTestInfoFactory(reportFiles); + List jacocoExecutionDataList = ReportUtils + .listFiles(ETestArtifactFormat.JACOCO, reportFiles); + try (TestwiseCoverageReportWriter coverageWriter = new TestwiseCoverageReportWriter(testInfoFactory, + new File(outputFile), splitAfter)) { + for (File executionDataFile : jacocoExecutionDataList) { + generator.convertAndConsume(executionDataFile, coverageWriter); + } + } catch (IOException e) { + throw new RuntimeException(e); + } + } + } + private TestInfoFactory createTestInfoFactory(List reportFiles) throws MojoFailureException { + try { + List testDetails = ReportUtils.readObjects(ETestArtifactFormat.TEST_LIST, + TestDetails[].class, reportFiles); + List testExecutions = ReportUtils.readObjects(ETestArtifactFormat.TEST_EXECUTION, + TestExecution[].class, reportFiles); + logger.info( + "Writing report with " + testDetails.size() + " Details/" + testExecutions.size() + " Results"); + return new TestInfoFactory(testDetails, testExecutions); + } catch (IOException e) { + logger.error("Could not read test details from reports. Aborting."); + throw new MojoFailureException(e); + } + + } + + private JaCoCoTestwiseReportGenerator createJaCoCoTestwiseReportGenerator() throws MojoFailureException { + String includes = null; + if (this.includes != null){ + includes = String.join(":", this.includes); + } + String excludes = null; + if (this.excludes != null){ + excludes = String.join(":", this.excludes); + } + try { + return new JaCoCoTestwiseReportGenerator( + getClassDirectoriesOrZips(), + new ClasspathWildcardIncludeFilter(includes, excludes), + EDuplicateClassFileBehavior.WARN, + logger + ); + } catch (AgentOptionParseException e) { + logger.error("Could not create testwise report generator. Aborting."); + throw new MojoFailureException(e); + } + } + private List getClassDirectoriesOrZips() throws AgentOptionParseException { + List classDirectoriesOrZips = new ArrayList<>(); + classDirectoriesOrZips.add(projectBuildDir); + return ClasspathUtils + .resolveClasspathTextFiles("classes", new FilePatternResolver(new CommandLineLogger()), + classDirectoriesOrZips); + } +} From 3f0b9f1b41010ec3340bf8c5425ac51f9118ed5a Mon Sep 17 00:00:00 2001 From: Johannes Veihelmann Date: Tue, 14 Nov 2023 10:43:58 +0100 Subject: [PATCH 02/44] TS-36294 Update tests to remove findings. --- .../src/test/java/foo/TwoUnitTest.java | 19 + .../src/test/java/foo/UnitTest.java | 1004 +---------------- .../src/test/java/foo/eightUnitTest.java | 23 - .../src/test/java/foo/fiveUnitTest.java | 23 - .../src/test/java/foo/fourUnitTest.java | 23 - .../src/test/java/foo/nineUnitTest.java | 23 - .../src/test/java/foo/sevenUnitTest.java | 23 - .../src/test/java/foo/sixUnitTest.java | 23 - .../src/test/java/foo/tenUnitTest.java | 23 - .../src/test/java/foo/threeUnitTest.java | 23 - .../src/test/java/foo/twoUnitTest.java | 23 - 11 files changed, 30 insertions(+), 1200 deletions(-) create mode 100644 system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/TwoUnitTest.java delete mode 100644 system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/eightUnitTest.java delete mode 100644 system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/fiveUnitTest.java delete mode 100644 system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/fourUnitTest.java delete mode 100644 system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/nineUnitTest.java delete mode 100644 system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/sevenUnitTest.java delete mode 100644 system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/sixUnitTest.java delete mode 100644 system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/tenUnitTest.java delete mode 100644 system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/threeUnitTest.java delete mode 100644 system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/twoUnitTest.java diff --git a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/TwoUnitTest.java b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/TwoUnitTest.java new file mode 100644 index 000000000..2cccb7f48 --- /dev/null +++ b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/TwoUnitTest.java @@ -0,0 +1,19 @@ +package bar; + +import org.junit.jupiter.api.Test; +import foo.SUT; + +/** Dummy test class 2 */ +public class TwoUnitTest { + + /** Dummy test*/ + @Test + public void itBla() throws Exception { + new SUT().bla(); + } + /** Dummy test*/ + @Test + public void itFoo() throws Exception { + new SUT().foo(); + } +} diff --git a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/UnitTest.java b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/UnitTest.java index 00c256a0f..f264e9eb4 100644 --- a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/UnitTest.java +++ b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/UnitTest.java @@ -3,999 +3,17 @@ import org.junit.jupiter.api.Test; import foo.SUT; +/** Dummy test class */ public class UnitTest { - @Test - public void itBla() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - @Test - public void itBla1() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo1() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo1() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - @Test - public void itBla2() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo2() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo2() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - @Test - public void itBla3() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itawdoooo() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo3() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - @Test - public void itBla4() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo4() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo5ppp() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla5ppp() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo5ppp() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo6() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla6() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo6() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo7() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla7() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo7() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo8() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla8() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo8() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo9() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla9() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo9() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo10() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla10() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo10() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo11() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla11() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo11() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo12() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla12() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo12() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo13() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla13() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo13() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo14() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla14() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo14() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo15() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla15() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo15() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo16() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla16() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo16() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo17() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla17() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo17() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo18() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla18() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo18() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itouihowd() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla19() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo19() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo19() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla20() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo20() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo20() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla21() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo21() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo21() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla22() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo22() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo22() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla23() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo23() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo23() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla24() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo24() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo24() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla25() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo25() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo25() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla2z() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo2z() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo2z() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla2g() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo2g() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo2g() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void assmethod() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo2h() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo2h() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla2h() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo2a() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo2a() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla2a() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoolol() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoolol() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBlalol() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo2i() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo2i() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla2i() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo2k() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo2k() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla2k() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo2l() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo2l() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla2l() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo31() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo31() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla31() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo41() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo41() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla41() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo42() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo42() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla42() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo43() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo43() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla43() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo44() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo44() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla44() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo45() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo45() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla45() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo46() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo46() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla46() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo47() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo47() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla47() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo487() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo487() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla487() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo49() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo49() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla49() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo4yy() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo4yy() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla4yy() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo4yx() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo4yx() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla4yx() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo4yc() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo4yc() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla4yc() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo4yv() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo4yv() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla4yv() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo4ya() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo4ya() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla4ya() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo4yq() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo4yq() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla4yq() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo4yw() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo4yw() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } @Test - public void itBla4yw() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo3() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itGoo4() throws Exception { - new SUT().goo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } + /** Dummy test*/ + @Test + public void itBla() throws Exception { + new SUT().bla(); + } + /** Dummy test*/ + @Test + public void itFoo() throws Exception { + new SUT().foo(); + } } diff --git a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/eightUnitTest.java b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/eightUnitTest.java deleted file mode 100644 index 3097d4002..000000000 --- a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/eightUnitTest.java +++ /dev/null @@ -1,23 +0,0 @@ -package bar; - -import org.junit.jupiter.api.Test; -import foo.SUT; - -public class eightUnitTest { - - @Test - public void itBla() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - -} diff --git a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/fiveUnitTest.java b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/fiveUnitTest.java deleted file mode 100644 index 335d53371..000000000 --- a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/fiveUnitTest.java +++ /dev/null @@ -1,23 +0,0 @@ -package bar; - -import org.junit.jupiter.api.Test; -import foo.SUT; - -public class fiveUnitTest { - - @Test - public void itBla() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - -} diff --git a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/fourUnitTest.java b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/fourUnitTest.java deleted file mode 100644 index 2c3bbfb38..000000000 --- a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/fourUnitTest.java +++ /dev/null @@ -1,23 +0,0 @@ -package bar; - -import org.junit.jupiter.api.Test; -import foo.SUT; - -public class fourUnitTest { - - @Test - public void itBla() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - -} diff --git a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/nineUnitTest.java b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/nineUnitTest.java deleted file mode 100644 index 57db8a36e..000000000 --- a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/nineUnitTest.java +++ /dev/null @@ -1,23 +0,0 @@ -package bar; - -import org.junit.jupiter.api.Test; -import foo.SUT; - -public class nineUnitTest { - - @Test - public void itBla() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - -} diff --git a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/sevenUnitTest.java b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/sevenUnitTest.java deleted file mode 100644 index 164e48fdc..000000000 --- a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/sevenUnitTest.java +++ /dev/null @@ -1,23 +0,0 @@ -package bar; - -import org.junit.jupiter.api.Test; -import foo.SUT; - -public class sevenUnitTest { - - @Test - public void itBla() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - -} diff --git a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/sixUnitTest.java b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/sixUnitTest.java deleted file mode 100644 index ac9b1e807..000000000 --- a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/sixUnitTest.java +++ /dev/null @@ -1,23 +0,0 @@ -package bar; - -import org.junit.jupiter.api.Test; -import foo.SUT; - -public class sixUnitTest { - - @Test - public void itBla() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - -} diff --git a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/tenUnitTest.java b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/tenUnitTest.java deleted file mode 100644 index a3078c008..000000000 --- a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/tenUnitTest.java +++ /dev/null @@ -1,23 +0,0 @@ -package bar; - -import org.junit.jupiter.api.Test; -import foo.SUT; - -public class tenUnitTest { - - @Test - public void itBla() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - -} diff --git a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/threeUnitTest.java b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/threeUnitTest.java deleted file mode 100644 index 79b7c5cf0..000000000 --- a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/threeUnitTest.java +++ /dev/null @@ -1,23 +0,0 @@ -package bar; - -import org.junit.jupiter.api.Test; -import foo.SUT; - -public class threeUnitTest { - - @Test - public void itBla() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - -} diff --git a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/twoUnitTest.java b/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/twoUnitTest.java deleted file mode 100644 index 257183a71..000000000 --- a/system-tests/tia-maven/maven-exec-file-project/src/test/java/foo/twoUnitTest.java +++ /dev/null @@ -1,23 +0,0 @@ -package bar; - -import org.junit.jupiter.api.Test; -import foo.SUT; - -public class twoUnitTest { - - @Test - public void itBla() throws Exception { - new SUT().bla(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - @Test - public void itFoo() throws Exception { - new SUT().foo(); - // Add sleep so we can simulate test execution and test parallel test execution - Thread.sleep(10); - } - - -} From 671bf681cf5e5c5a336bd8ce7f2edb55a198701e Mon Sep 17 00:00:00 2001 From: Johannes Veihelmann Date: Tue, 14 Nov 2023 10:45:59 +0100 Subject: [PATCH 03/44] TS-36294 Update visibility of logger and remove sysout call --- .../java/com/teamscale/tia/TiaMavenCoverageConverterTest.java | 1 - .../java/com/teamscale/tia/maven/TiaCoverageConvertMojo.java | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/system-tests/tia-maven/src/test/java/com/teamscale/tia/TiaMavenCoverageConverterTest.java b/system-tests/tia-maven/src/test/java/com/teamscale/tia/TiaMavenCoverageConverterTest.java index 70c624742..d4b27d132 100644 --- a/system-tests/tia-maven/src/test/java/com/teamscale/tia/TiaMavenCoverageConverterTest.java +++ b/system-tests/tia-maven/src/test/java/com/teamscale/tia/TiaMavenCoverageConverterTest.java @@ -26,7 +26,6 @@ public void testMavenTia() throws Exception { } ProcessUtils.ExecutionResult result = ProcessUtils.execute(new ProcessBuilder(executable, "clean", "verify").directory(workingDirectory)); - System.out.println(result.getStdout()); File configFile = new File(Paths.get(workingDirectory.getAbsolutePath(), "target", "tia", "agent.log").toUri()); String configContent = FileSystemUtils.readFile(configFile); assertThat(configContent).isNotEmpty(); diff --git a/teamscale-maven-plugin/src/main/java/com/teamscale/tia/maven/TiaCoverageConvertMojo.java b/teamscale-maven-plugin/src/main/java/com/teamscale/tia/maven/TiaCoverageConvertMojo.java index 50bdc92cb..d06d17934 100644 --- a/teamscale-maven-plugin/src/main/java/com/teamscale/tia/maven/TiaCoverageConvertMojo.java +++ b/teamscale-maven-plugin/src/main/java/com/teamscale/tia/maven/TiaCoverageConvertMojo.java @@ -64,7 +64,7 @@ public class TiaCoverageConvertMojo extends AbstractMojo { @Parameter() public String outputFile; - ILogger logger = new CommandLineLogger(); + private final ILogger logger = new CommandLineLogger(); @Override public void execute() throws MojoFailureException { From b417375f073b8b2ef268a11266c796566ab6effd Mon Sep 17 00:00:00 2001 From: Johannes Veihelmann Date: Tue, 14 Nov 2023 10:58:31 +0100 Subject: [PATCH 04/44] TS-36294 undo unrelated file changes --- .../src/test/java/foo/IntegIT.java | 22 + .../maven-exec-file-project/testwise-1.json | 8533 ----------------- 2 files changed, 22 insertions(+), 8533 deletions(-) create mode 100644 system-tests/tia-maven/maven-dump-local-project/src/test/java/foo/IntegIT.java delete mode 100644 system-tests/tia-maven/maven-exec-file-project/testwise-1.json diff --git a/system-tests/tia-maven/maven-dump-local-project/src/test/java/foo/IntegIT.java b/system-tests/tia-maven/maven-dump-local-project/src/test/java/foo/IntegIT.java new file mode 100644 index 000000000..9015578b5 --- /dev/null +++ b/system-tests/tia-maven/maven-dump-local-project/src/test/java/foo/IntegIT.java @@ -0,0 +1,22 @@ +package bar; + +import org.junit.jupiter.api.Test; + +import foo.SUT; + +public class IntegIT { + + @Test + public void itBla() throws Exception { + new SUT().bla(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(2000); + } + + @Test + public void itFoo() throws Exception { + new SUT().foo(); + // Add sleep so we can simulate test execution and test parallel test execution + Thread.sleep(2000); + } +} diff --git a/system-tests/tia-maven/maven-exec-file-project/testwise-1.json b/system-tests/tia-maven/maven-exec-file-project/testwise-1.json deleted file mode 100644 index 0a7522cd6..000000000 --- a/system-tests/tia-maven/maven-exec-file-project/testwise-1.json +++ /dev/null @@ -1,8533 +0,0 @@ -{"tests":[ - { - "duration": 0.211, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/beightUnitTest/itBla()" - }, - { - "duration": 0.02, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/beightUnitTest/itFoo()" - }, - { - "duration": 0.02, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/beightUnitTest/itFoo()" - }, - { - "duration": 0.202, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bfiveUnitTest/itBla()" - }, - { - "duration": 0.021, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bfiveUnitTest/itFoo()" - }, - { - "duration": 0.021, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/bfiveUnitTest/itFoo()" - }, - { - "duration": 0.212, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bfourUnitTest/itBla()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bfourUnitTest/itFoo()" - }, - { - "duration": 0.03, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/bfourUnitTest/itFoo()" - }, - { - "duration": 0.181, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bnineUnitTest/itBla()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bnineUnitTest/itFoo()" - }, - { - "duration": 0.031, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/bnineUnitTest/itFoo()" - }, - { - "duration": 0.204, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bsevenUnitTest/itBla()" - }, - { - "duration": 0.027, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bsevenUnitTest/itFoo()" - }, - { - "duration": 0.027, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/bsevenUnitTest/itFoo()" - }, - { - "duration": 0.193, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bsixUnitTest/itBla()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bsixUnitTest/itFoo()" - }, - { - "duration": 0.018, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/bsixUnitTest/itFoo()" - }, - { - "duration": 0.196, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/btenUnitTest/itBla()" - }, - { - "duration": 0.023, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/btenUnitTest/itFoo()" - }, - { - "duration": 0.023, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/btenUnitTest/itFoo()" - }, - { - "duration": 0.199, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bthreeUnitTest/itBla()" - }, - { - "duration": 0.015, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bthreeUnitTest/itFoo()" - }, - { - "duration": 0.015, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/bthreeUnitTest/itFoo()" - }, - { - "duration": 0.176, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/btwoUnitTest/itBla()" - }, - { - "duration": 0.023, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/btwoUnitTest/itFoo()" - }, - { - "duration": 0.023, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/btwoUnitTest/itFoo()" - }, - { - "duration": 0.199, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itouihowd()" - }, - { - "duration": 0.026, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla1()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla2()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla3()" - }, - { - "duration": 0.02, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla4()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla6()" - }, - { - "duration": 0.035, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla7()" - }, - { - "duration": 0.028, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla8()" - }, - { - "duration": 0.02, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla9()" - }, - { - "duration": 0.021, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo1()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo2()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo3()" - }, - { - "duration": 0.032, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo4()" - }, - { - "duration": 0.033, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo6()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo7()" - }, - { - "duration": 0.037, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo8()" - }, - { - "duration": 0.021, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo9()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo1()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo2()" - }, - { - "duration": 0.022, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo3()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo4()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo6()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo7()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo8()" - }, - { - "duration": 0.034, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo9()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itawdoooo()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo()" - }, - { - "duration": 0.02, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla487()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla4ya()" - }, - { - "duration": 0.034, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla4yc()" - }, - { - "duration": 0.024, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla4yq()" - }, - { - "duration": 0.015, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla4yv()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla4yw()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla4yx()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla4yy()" - }, - { - "duration": 0.028, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBlalol()" - }, - { - "duration": 0.032, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo487()" - }, - { - "duration": 0.023, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo4ya()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo4yc()" - }, - { - "duration": 0.028, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo4yq()" - }, - { - "duration": 0.032, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo4yv()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo4yw()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo4yx()" - }, - { - "duration": 0.02, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo4yy()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoolol()" - }, - { - "duration": 0.02, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo487()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo4ya()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo4yc()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo4yq()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo4yv()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo4yw()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo4yx()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo4yy()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoolol()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo5ppp()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla5ppp()" - }, - { - "duration": 0.032, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo5ppp()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/assmethod()" - }, - { - "duration": 0.02, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla10()" - }, - { - "duration": 0.014, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla11()" - }, - { - "duration": 0.021, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla12()" - }, - { - "duration": 0.039, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla13()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla14()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla15()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla16()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla17()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla18()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla19()" - }, - { - "duration": 0.015, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla20()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla21()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla22()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla23()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla24()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla25()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla31()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla2a()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla2g()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla2h()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla2i()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla2k()" - }, - { - "duration": 0.014, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla2l()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla41()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla42()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla43()" - }, - { - "duration": 0.028, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla44()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla45()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla46()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla47()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla49()" - }, - { - "duration": 0.032, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itBla2z()" - }, - { - "duration": 0.027, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo10()" - }, - { - "duration": 0.023, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo11()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo12()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo13()" - }, - { - "duration": 0.028, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo14()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo15()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo16()" - }, - { - "duration": 0.028, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo17()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo18()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo19()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo20()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo21()" - }, - { - "duration": 0.026, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo22()" - }, - { - "duration": 0.025, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo23()" - }, - { - "duration": 0.021, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo24()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo25()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo31()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo2a()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo2g()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo2h()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo2i()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo2k()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo2l()" - }, - { - "duration": 0.028, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo41()" - }, - { - "duration": 0.021, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo42()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo43()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo44()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo45()" - }, - { - "duration": 0.015, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo46()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo47()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo49()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itFoo2z()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo10()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo11()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo12()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo13()" - }, - { - "duration": 0.028, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo14()" - }, - { - "duration": 0.02, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo15()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo16()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo17()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo18()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo19()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo20()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo21()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo22()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo23()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo24()" - }, - { - "duration": 0.027, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo25()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo31()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo2a()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo2g()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo2h()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo2i()" - }, - { - "duration": 0.015, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo2k()" - }, - { - "duration": 0.015, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo2l()" - }, - { - "duration": 0.014, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo41()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo42()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo43()" - }, - { - "duration": 0.015, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo44()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo45()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo46()" - }, - { - "duration": 0.015, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo47()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo49()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo2z()" - }, - { - "duration": 0.016, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/bUnitTest/itGoo2z()" - }, - { - "duration": 0.163, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/ceightUnitTest/itBla()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/ceightUnitTest/itFoo()" - }, - { - "duration": 0.031, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/ceightUnitTest/itFoo()" - }, - { - "duration": 0.184, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cfiveUnitTest/itBla()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cfiveUnitTest/itFoo()" - }, - { - "duration": 0.031, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/cfiveUnitTest/itFoo()" - }, - { - "duration": 0.173, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cfourUnitTest/itBla()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cfourUnitTest/itFoo()" - }, - { - "duration": 0.029, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/cfourUnitTest/itFoo()" - }, - { - "duration": 0.189, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cnineUnitTest/itBla()" - }, - { - "duration": 0.021, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cnineUnitTest/itFoo()" - }, - { - "duration": 0.021, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/cnineUnitTest/itFoo()" - }, - { - "duration": 0.188, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/csevenUnitTest/itBla()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/csevenUnitTest/itFoo()" - }, - { - "duration": 0.019, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/csevenUnitTest/itFoo()" - }, - { - "duration": 0.183, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/csixUnitTest/itBla()" - }, - { - "duration": 0.021, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/csixUnitTest/itFoo()" - }, - { - "duration": 0.021, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/csixUnitTest/itFoo()" - }, - { - "duration": 0.2, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/ctenUnitTest/itBla()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/ctenUnitTest/itFoo()" - }, - { - "duration": 0.031, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/ctenUnitTest/itFoo()" - }, - { - "duration": 0.196, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cthreeUnitTest/itBla()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cthreeUnitTest/itFoo()" - }, - { - "duration": 0.016, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/cthreeUnitTest/itFoo()" - }, - { - "duration": 0.191, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/ctwoUnitTest/itBla()" - }, - { - "duration": 0.027, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/ctwoUnitTest/itFoo()" - }, - { - "duration": 0.027, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/ctwoUnitTest/itFoo()" - }, - { - "duration": 0.228, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itouihowd()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla1()" - }, - { - "duration": 0.02, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla2()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla3()" - }, - { - "duration": 0.021, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla4()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla6()" - }, - { - "duration": 0.021, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla7()" - }, - { - "duration": 0.035, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla8()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla9()" - }, - { - "duration": 0.033, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo1()" - }, - { - "duration": 0.033, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo2()" - }, - { - "duration": 0.034, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo3()" - }, - { - "duration": 0.032, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo4()" - }, - { - "duration": 0.024, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo6()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo7()" - }, - { - "duration": 0.026, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo8()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo9()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo1()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo2()" - }, - { - "duration": 0.032, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo3()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo4()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo6()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo7()" - }, - { - "duration": 0.02, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo8()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo9()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itawdoooo()" - }, - { - "duration": 0.027, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla()" - }, - { - "duration": 0.032, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo()" - }, - { - "duration": 0.028, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla487()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla4ya()" - }, - { - "duration": 0.032, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla4yc()" - }, - { - "duration": 0.028, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla4yq()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla4yv()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla4yw()" - }, - { - "duration": 0.032, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla4yx()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla4yy()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBlalol()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo487()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo4ya()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo4yc()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo4yq()" - }, - { - "duration": 0.028, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo4yv()" - }, - { - "duration": 0.028, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo4yw()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo4yx()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo4yy()" - }, - { - "duration": 0.015, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoolol()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo487()" - }, - { - "duration": 0.026, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo4ya()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo4yc()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo4yq()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo4yv()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo4yw()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo4yx()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo4yy()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoolol()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo5ppp()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla5ppp()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo5ppp()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/assmethod()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla10()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla11()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla12()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla13()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla14()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla15()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla16()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla17()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla18()" - }, - { - "duration": 0.014, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla19()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla20()" - }, - { - "duration": 0.015, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla21()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla22()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla23()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla24()" - }, - { - "duration": 0.015, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla25()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla31()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla2a()" - }, - { - "duration": 0.02, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla2g()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla2h()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla2i()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla2k()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla2l()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla41()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla42()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla43()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla44()" - }, - { - "duration": 0.022, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla45()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla46()" - }, - { - "duration": 0.028, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla47()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla49()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itBla2z()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo10()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo11()" - }, - { - "duration": 0.032, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo12()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo13()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo14()" - }, - { - "duration": 0.026, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo15()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo16()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo17()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo18()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo19()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo20()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo21()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo22()" - }, - { - "duration": 0.026, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo23()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo24()" - }, - { - "duration": 0.032, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo25()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo31()" - }, - { - "duration": 0.028, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo2a()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo2g()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo2h()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo2i()" - }, - { - "duration": 0.015, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo2k()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo2l()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo41()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo42()" - }, - { - "duration": 0.014, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo43()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo44()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo45()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo46()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo47()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo49()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itFoo2z()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo10()" - }, - { - "duration": 0.024, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo11()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo12()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo13()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo14()" - }, - { - "duration": 0.015, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo15()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo16()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo17()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo18()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo19()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo20()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo21()" - }, - { - "duration": 0.014, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo22()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo23()" - }, - { - "duration": 0.014, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo24()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo25()" - }, - { - "duration": 0.014, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo31()" - }, - { - "duration": 0.015, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo2a()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo2g()" - }, - { - "duration": 0.014, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo2h()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo2i()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo2k()" - }, - { - "duration": 0.015, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo2l()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo41()" - }, - { - "duration": 0.013, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo42()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo43()" - }, - { - "duration": 0.02, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo44()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo45()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo46()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo47()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo49()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo2z()" - }, - { - "duration": 0.018, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/cUnitTest/itGoo2z()" - }, - { - "duration": 0.216, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/eightUnitTest/itBla()" - }, - { - "duration": 0.023, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/eightUnitTest/itFoo()" - }, - { - "duration": 0.023, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/eightUnitTest/itFoo()" - }, - { - "duration": 0.208, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/fiveUnitTest/itBla()" - }, - { - "duration": 0.021, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/fiveUnitTest/itFoo()" - }, - { - "duration": 0.021, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/fiveUnitTest/itFoo()" - }, - { - "duration": 0.191, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/fourUnitTest/itBla()" - }, - { - "duration": 0.033, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/fourUnitTest/itFoo()" - }, - { - "duration": 0.033, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/fourUnitTest/itFoo()" - }, - { - "duration": 0.184, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/nineUnitTest/itBla()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/nineUnitTest/itFoo()" - }, - { - "duration": 0.019, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/nineUnitTest/itFoo()" - }, - { - "duration": 0.198, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/sevenUnitTest/itBla()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/sevenUnitTest/itFoo()" - }, - { - "duration": 0.017, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/sevenUnitTest/itFoo()" - }, - { - "duration": 0.186, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/sixUnitTest/itBla()" - }, - { - "duration": 0.021, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/sixUnitTest/itFoo()" - }, - { - "duration": 0.021, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/sixUnitTest/itFoo()" - }, - { - "duration": 0.172, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/tenUnitTest/itBla()" - }, - { - "duration": 0.025, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/tenUnitTest/itFoo()" - }, - { - "duration": 0.025, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/tenUnitTest/itFoo()" - }, - { - "duration": 0.189, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/threeUnitTest/itBla()" - }, - { - "duration": 0.025, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/threeUnitTest/itFoo()" - }, - { - "duration": 0.025, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/threeUnitTest/itFoo()" - }, - { - "duration": 0.193, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/twoUnitTest/itBla()" - }, - { - "duration": 0.044, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/twoUnitTest/itFoo()" - }, - { - "duration": 0.044, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/twoUnitTest/itFoo()" - }, - { - "duration": 0.217, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itouihowd()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla1()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla2()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla3()" - }, - { - "duration": 0.023, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla4()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla6()" - }, - { - "duration": 0.02, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla7()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla8()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla9()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo1()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo2()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo3()" - }, - { - "duration": 0.021, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo4()" - }, - { - "duration": 0.028, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo6()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo7()" - }, - { - "duration": 0.025, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo8()" - }, - { - "duration": 0.024, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo9()" - }, - { - "duration": 0.033, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo1()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo2()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo3()" - }, - { - "duration": 0.032, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo4()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo6()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo7()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo8()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo9()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itawdoooo()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla()" - }, - { - "duration": 0.02, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla487()" - }, - { - "duration": 0.032, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla4ya()" - }, - { - "duration": 0.022, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla4yc()" - }, - { - "duration": 0.022, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla4yq()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla4yv()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla4yw()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla4yx()" - }, - { - "duration": 0.021, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla4yy()" - }, - { - "duration": 0.028, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBlalol()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo487()" - }, - { - "duration": 0.032, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo4ya()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo4yc()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo4yq()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo4yv()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo4yw()" - }, - { - "duration": 0.02, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo4yx()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo4yy()" - }, - { - "duration": 0.025, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoolol()" - }, - { - "duration": 0.021, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo487()" - }, - { - "duration": 0.015, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo4ya()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo4yc()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo4yq()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo4yv()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo4yw()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo4yx()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo4yy()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoolol()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo5ppp()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla5ppp()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo5ppp()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/assmethod()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla10()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla11()" - }, - { - "duration": 0.033, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla12()" - }, - { - "duration": 0.036, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla13()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla14()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla15()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla16()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla17()" - }, - { - "duration": 0.025, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla18()" - }, - { - "duration": 0.02, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla19()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla20()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla21()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla22()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla23()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla24()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla25()" - }, - { - "duration": 0.015, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla31()" - }, - { - "duration": 0.025, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla2a()" - }, - { - "duration": 0.021, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla2g()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla2h()" - }, - { - "duration": 0.032, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla2i()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla2k()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla2l()" - }, - { - "duration": 0.032, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla41()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla42()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla43()" - }, - { - "duration": 0.027, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla44()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla45()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla46()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla47()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla49()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,6-7", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itBla2z()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo10()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo11()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo12()" - }, - { - "duration": 0.028, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo13()" - }, - { - "duration": 0.026, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo14()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo15()" - }, - { - "duration": 0.015, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo16()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo17()" - }, - { - "duration": 0.019, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo18()" - }, - { - "duration": 0.015, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo19()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo20()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo21()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo22()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo23()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo24()" - }, - { - "duration": 0.027, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo25()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo31()" - }, - { - "duration": 0.028, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo2a()" - }, - { - "duration": 0.021, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo2g()" - }, - { - "duration": 0.02, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo2h()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo2i()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo2k()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo2l()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo41()" - }, - { - "duration": 0.028, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo42()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo43()" - }, - { - "duration": 0.021, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo44()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo45()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo46()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo47()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo49()" - }, - { - "duration": 0.021, - "paths": [ - { - "files": [ - { - "coveredLines": "3,10-11", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itFoo2z()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo10()" - }, - { - "duration": 0.035, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo11()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo12()" - }, - { - "duration": 0.035, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo13()" - }, - { - "duration": 0.028, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo14()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo15()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo16()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo17()" - }, - { - "duration": 0.031, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo18()" - }, - { - "duration": 0.027, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo19()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo20()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo21()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo22()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo23()" - }, - { - "duration": 0.02, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo24()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo25()" - }, - { - "duration": 0.015, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo31()" - }, - { - "duration": 0.018, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo2a()" - }, - { - "duration": 0.022, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo2g()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo2h()" - }, - { - "duration": 0.027, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo2i()" - }, - { - "duration": 0.03, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo2k()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo2l()" - }, - { - "duration": 0.015, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo41()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo42()" - }, - { - "duration": 0.015, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo43()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo44()" - }, - { - "duration": 0.015, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo45()" - }, - { - "duration": 0.029, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo46()" - }, - { - "duration": 0.016, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo47()" - }, - { - "duration": 0.017, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo49()" - }, - { - "duration": 0.014, - "paths": [ - { - "files": [ - { - "coveredLines": "3,14-15", - "fileName": "SUT.java" - } - ], - "path": "foo" - } - ], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo2z()" - }, - { - "duration": 0.014, - "paths": [], - "result": "PASSED", - "uniformPath": "bar/UnitTest/itGoo2z()" - }]} \ No newline at end of file From 09a9e4cb0c289e94f6ced3de9f699286f01b42a6 Mon Sep 17 00:00:00 2001 From: Johannes Veihelmann Date: Tue, 14 Nov 2023 11:06:47 +0100 Subject: [PATCH 05/44] TS-36294 update changelog --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fd1126c9..e3a79840a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,8 +6,9 @@ We use [semantic versioning](http://semver.org/): # Next Release -# 32.4.1 +- [feature] _teamscale-maven-plugin_: Add new execution goal to batch convert .exec files into testwise coverage report. +# 32.4.1 - [fix] _agent_: The agent crashed while starting on some machines with "cannot construct instances of" errors # 32.4.0 From 66f1d93f68a692e9982f4bb7f5cbf99a18b0512f Mon Sep 17 00:00:00 2001 From: Johannes Veihelmann Date: Tue, 14 Nov 2023 11:52:41 +0100 Subject: [PATCH 06/44] TS-36294 change file permission --- system-tests/tia-maven/maven-exec-file-project/mvnw | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 system-tests/tia-maven/maven-exec-file-project/mvnw diff --git a/system-tests/tia-maven/maven-exec-file-project/mvnw b/system-tests/tia-maven/maven-exec-file-project/mvnw old mode 100644 new mode 100755 From 46919a0bf7a7b5a450a6868691b6bb0c30f50059 Mon Sep 17 00:00:00 2001 From: Johannes Veihelmann Date: Thu, 23 Nov 2023 16:01:48 +0100 Subject: [PATCH 07/44] TS-36294 improve test asserts and minor rework --- .../tia/TiaMavenCoverageConverterTest.java | 59 +++++++++++++++---- .../tia/maven/TiaCoverageConvertMojo.java | 42 ++++++------- 2 files changed, 69 insertions(+), 32 deletions(-) diff --git a/system-tests/tia-maven/src/test/java/com/teamscale/tia/TiaMavenCoverageConverterTest.java b/system-tests/tia-maven/src/test/java/com/teamscale/tia/TiaMavenCoverageConverterTest.java index d4b27d132..bd6beaf3d 100644 --- a/system-tests/tia-maven/src/test/java/com/teamscale/tia/TiaMavenCoverageConverterTest.java +++ b/system-tests/tia-maven/src/test/java/com/teamscale/tia/TiaMavenCoverageConverterTest.java @@ -1,37 +1,72 @@ package com.teamscale.tia; -import org.conqat.lib.commons.filesystem.FileSystemUtils; +import com.squareup.moshi.JsonAdapter; +import com.squareup.moshi.Moshi; +import com.teamscale.report.testwise.model.ETestExecutionResult; +import com.teamscale.report.testwise.model.TestwiseCoverageReport; +import com.teamscale.test.commons.SystemTestUtils; import org.conqat.lib.commons.io.ProcessUtils; import org.conqat.lib.commons.system.SystemUtils; import org.junit.jupiter.api.Test; import java.io.File; +import java.nio.file.Files; import java.nio.file.Paths; import static org.assertj.core.api.Assertions.assertThat; +import static org.junit.jupiter.api.Assertions.assertAll; +import static org.junit.jupiter.api.Assertions.assertNotNull; + /** * Tests the automatic conversion of .exec files to a testwise coverage report. */ public class TiaMavenCoverageConverterTest { + + /** + * The name of the project that the maven plugin is tested with. + */ + private static final String PROJECT_NAME = "maven-exec-file-project"; + private final JsonAdapter testwiseCoverageReportJsonAdapter = new Moshi.Builder().build() + .adapter(TestwiseCoverageReport.class); + /** - * Starts a maven process with the reuseForks flag set to "false" and tiaMode "exec-file". - * Checks if the coverage can be converted to a testwise coverage report afterward. + * Starts a maven process with the reuseForks flag set to "false" and tiaMode "exec-file". Checks if the coverage + * can be converted to a testwise coverage report afterward. */ @Test public void testMavenTia() throws Exception { - File workingDirectory = new File("maven-exec-file-project"); + File workingDirectory = new File(PROJECT_NAME); String executable = "./mvnw"; if (SystemUtils.isWindows()) { - executable = Paths.get("maven-exec-file-project", "mvnw.cmd").toUri().getPath(); + executable = Paths.get(PROJECT_NAME, "mvnw.cmd").toUri().getPath(); } - ProcessUtils.ExecutionResult result = ProcessUtils.execute(new ProcessBuilder(executable, "clean", "verify").directory(workingDirectory)); - File configFile = new File(Paths.get(workingDirectory.getAbsolutePath(), "target", "tia", "agent.log").toUri()); - String configContent = FileSystemUtils.readFile(configFile); - assertThat(configContent).isNotEmpty(); + ProcessUtils.ExecutionResult result = ProcessUtils.execute( + new ProcessBuilder(executable, "clean", "test", + "teamscale-maven-plugin:testwise-coverage-converter").directory( + workingDirectory)); assertThat(result.terminatedByTimeoutOrInterruption()).isFalse(); - assertThat(configContent).doesNotContain("Could not start http server on port"); - File testwiseCoverage = new File(Paths.get(workingDirectory.getAbsolutePath(), "target", "tia", "testwise-coverage-1.json").toUri()); - assertThat(testwiseCoverage).isNotEmpty(); + System.out.println(result.getStdout()); + File testwiseCoverage = new File( + Paths.get(workingDirectory.getAbsolutePath(), "target", "tia", "reports", "testwise-coverage-1.json") + .toUri()); + TestwiseCoverageReport testwiseCoverageReport = testwiseCoverageReportJsonAdapter.fromJson( + new String(Files.readAllBytes( + testwiseCoverage.toPath()))); + assertNotNull(testwiseCoverageReport); + assertAll(() -> { + assertThat(testwiseCoverageReport.tests).extracting(test -> test.uniformPath) + .contains("bar/TwoUnitTest/itBla()", "bar/TwoUnitTest/itFoo()", "bar/UnitTest/itBla()", + "bar/UnitTest/itFoo()"); + assertThat(testwiseCoverageReport.tests).extracting(test -> test.result) + .doesNotContain(ETestExecutionResult.FAILURE); + assertThat(testwiseCoverageReport.tests).extracting(SystemTestUtils::getCoverageString) + .containsExactly("SUT.java:3,6-7", + "SUT.java:3,10-11", + "", + "SUT.java:3,6-7", + "SUT.java:3,10-11", + ""); + }); } } diff --git a/teamscale-maven-plugin/src/main/java/com/teamscale/tia/maven/TiaCoverageConvertMojo.java b/teamscale-maven-plugin/src/main/java/com/teamscale/tia/maven/TiaCoverageConvertMojo.java index d06d17934..359e80a3d 100644 --- a/teamscale-maven-plugin/src/main/java/com/teamscale/tia/maven/TiaCoverageConvertMojo.java +++ b/teamscale-maven-plugin/src/main/java/com/teamscale/tia/maven/TiaCoverageConvertMojo.java @@ -4,7 +4,6 @@ import com.teamscale.jacoco.agent.options.AgentOptionParseException; import com.teamscale.jacoco.agent.options.ClasspathUtils; import com.teamscale.jacoco.agent.options.FilePatternResolver; -import com.teamscale.jacoco.agent.util.Benchmark; import org.apache.maven.plugin.AbstractMojo; import org.apache.maven.plugin.MojoFailureException; import org.apache.maven.plugins.annotations.LifecyclePhase; @@ -33,8 +32,8 @@ * Batch converts all created .exec file reports into a testwise coverage report. */ @Mojo(name = "testwise-coverage-converter", defaultPhase = LifecyclePhase.VERIFY, - requiresDependencyResolution = ResolutionScope.RUNTIME, threadSafe = true) -public class TiaCoverageConvertMojo extends AbstractMojo { + requiresDependencyResolution = ResolutionScope.RUNTIME) +public class TiaCoverageConvertMojo extends AbstractMojo { /** * Wildcard include patterns to apply during JaCoCo's traversal of class files. */ @@ -62,32 +61,34 @@ public class TiaCoverageConvertMojo extends AbstractMojo { * The output directory of the testwise coverage reports. */ @Parameter() - public String outputFile; + public String outputFolder; private final ILogger logger = new CommandLineLogger(); @Override public void execute() throws MojoFailureException { - if(Strings.isNullOrEmpty(outputFile)){ - outputFile = Paths.get(projectBuildDir, "tia", "testwise-coverage.json").toString(); + if (Strings.isNullOrEmpty(outputFolder)) { + outputFolder = Paths.get(projectBuildDir, "tia", "reports", "testwise-coverage.json").toString(); } List reportFiles = new ArrayList<>(); reportFiles.add(Paths.get(projectBuildDir, "tia").toAbsolutePath().resolve("reports").toFile()); - try (Benchmark ignored = new Benchmark("Generating the testwise coverage report")) { - JaCoCoTestwiseReportGenerator generator = createJaCoCoTestwiseReportGenerator(); - TestInfoFactory testInfoFactory = createTestInfoFactory(reportFiles); - List jacocoExecutionDataList = ReportUtils - .listFiles(ETestArtifactFormat.JACOCO, reportFiles); - try (TestwiseCoverageReportWriter coverageWriter = new TestwiseCoverageReportWriter(testInfoFactory, - new File(outputFile), splitAfter)) { - for (File executionDataFile : jacocoExecutionDataList) { - generator.convertAndConsume(executionDataFile, coverageWriter); - } - } catch (IOException e) { - throw new RuntimeException(e); + + logger.info("Generating the testwise coverage report"); + JaCoCoTestwiseReportGenerator generator = createJaCoCoTestwiseReportGenerator(); + TestInfoFactory testInfoFactory = createTestInfoFactory(reportFiles); + List jacocoExecutionDataList = ReportUtils + .listFiles(ETestArtifactFormat.JACOCO, reportFiles); + try (TestwiseCoverageReportWriter coverageWriter = new TestwiseCoverageReportWriter(testInfoFactory, + new File(outputFolder), splitAfter)) { + for (File executionDataFile : jacocoExecutionDataList) { + logger.info("Writing execution data for file: " + executionDataFile.getName()); + generator.convertAndConsume(executionDataFile, coverageWriter); } + } catch (IOException e) { + throw new RuntimeException(e); } } + private TestInfoFactory createTestInfoFactory(List reportFiles) throws MojoFailureException { try { List testDetails = ReportUtils.readObjects(ETestArtifactFormat.TEST_LIST, @@ -106,11 +107,11 @@ private TestInfoFactory createTestInfoFactory(List reportFiles) throws Moj private JaCoCoTestwiseReportGenerator createJaCoCoTestwiseReportGenerator() throws MojoFailureException { String includes = null; - if (this.includes != null){ + if (this.includes != null) { includes = String.join(":", this.includes); } String excludes = null; - if (this.excludes != null){ + if (this.excludes != null) { excludes = String.join(":", this.excludes); } try { @@ -125,6 +126,7 @@ private JaCoCoTestwiseReportGenerator createJaCoCoTestwiseReportGenerator() thro throw new MojoFailureException(e); } } + private List getClassDirectoriesOrZips() throws AgentOptionParseException { List classDirectoriesOrZips = new ArrayList<>(); classDirectoriesOrZips.add(projectBuildDir); From 6f613311831f7a50ef61886e6b9419954c8cab32 Mon Sep 17 00:00:00 2001 From: Johannes Veihelmann Date: Thu, 23 Nov 2023 16:05:02 +0100 Subject: [PATCH 08/44] TS-36294 remove reusefork limitation --- .../java/com/teamscale/tia/maven/TiaMojoBase.java | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/teamscale-maven-plugin/src/main/java/com/teamscale/tia/maven/TiaMojoBase.java b/teamscale-maven-plugin/src/main/java/com/teamscale/tia/maven/TiaMojoBase.java index db54cc1f8..ced70fdf2 100644 --- a/teamscale-maven-plugin/src/main/java/com/teamscale/tia/maven/TiaMojoBase.java +++ b/teamscale-maven-plugin/src/main/java/com/teamscale/tia/maven/TiaMojoBase.java @@ -286,19 +286,7 @@ private void validateTestPluginConfiguration(PluginExecution execution) throws M validateParallelizationParameter(configurationDom, "threadCount"); validateParallelizationParameter(configurationDom, "forkCount"); - - Xpp3Dom parameterDom = configurationDom.getChild("reuseForks"); - if (parameterDom == null) { - return; - } - - String value = parameterDom.getValue(); - if (value != null && !value.equals("true")) { - throw new MojoFailureException( - "You configured the " + getTestPluginArtifact() + " plugin to not reuse forks via the reuseForks configuration parameter." + - " This is not supported when performing Test Impact analysis as it prevents properly recording testwise coverage." + - " Please enable fork reuse when running Test Impact analysis."); - } + } private void validateEngineNotConfigured(Xpp3Dom configurationDom, From 78961d9205382c139bdd27404935e847d9fa26d5 Mon Sep 17 00:00:00 2001 From: Johannes Veihelmann Date: Thu, 23 Nov 2023 16:10:26 +0100 Subject: [PATCH 09/44] TS-36294 fix systemtestutils on windows --- .../teamscale/test/commons/SystemTestUtils.java | 5 +++-- .../tia/TiaMavenCoverageConverterTest.java | 14 +------------- 2 files changed, 4 insertions(+), 15 deletions(-) diff --git a/common-system-test/src/main/java/com/teamscale/test/commons/SystemTestUtils.java b/common-system-test/src/main/java/com/teamscale/test/commons/SystemTestUtils.java index 09310c555..dabe8fb7c 100644 --- a/common-system-test/src/main/java/com/teamscale/test/commons/SystemTestUtils.java +++ b/common-system-test/src/main/java/com/teamscale/test/commons/SystemTestUtils.java @@ -43,9 +43,10 @@ public static void runMavenTests(String mavenProjectPath) throws IOException { try { String executable = "./mvnw"; if (SystemUtils.isWindows()) { - executable = "./mvnw.cmd"; + executable = Paths.get(mavenProjectPath, "mvnw.cmd").toUri().getPath(); } - result = ProcessUtils.execute(new ProcessBuilder(executable, "clean", "verify").directory(workingDirectory)); + result = ProcessUtils.execute( + new ProcessBuilder(executable, "clean", "verify").directory(workingDirectory)); } catch (IOException e) { throw new IOException( "Failed to run ./mvnw clean verify in directory " + workingDirectory.getAbsolutePath(), diff --git a/system-tests/tia-maven/src/test/java/com/teamscale/tia/TiaMavenCoverageConverterTest.java b/system-tests/tia-maven/src/test/java/com/teamscale/tia/TiaMavenCoverageConverterTest.java index bd6beaf3d..f050e6af0 100644 --- a/system-tests/tia-maven/src/test/java/com/teamscale/tia/TiaMavenCoverageConverterTest.java +++ b/system-tests/tia-maven/src/test/java/com/teamscale/tia/TiaMavenCoverageConverterTest.java @@ -5,8 +5,6 @@ import com.teamscale.report.testwise.model.ETestExecutionResult; import com.teamscale.report.testwise.model.TestwiseCoverageReport; import com.teamscale.test.commons.SystemTestUtils; -import org.conqat.lib.commons.io.ProcessUtils; -import org.conqat.lib.commons.system.SystemUtils; import org.junit.jupiter.api.Test; import java.io.File; @@ -36,17 +34,7 @@ public class TiaMavenCoverageConverterTest { @Test public void testMavenTia() throws Exception { File workingDirectory = new File(PROJECT_NAME); - String executable = "./mvnw"; - if (SystemUtils.isWindows()) { - executable = Paths.get(PROJECT_NAME, "mvnw.cmd").toUri().getPath(); - } - - ProcessUtils.ExecutionResult result = ProcessUtils.execute( - new ProcessBuilder(executable, "clean", "test", - "teamscale-maven-plugin:testwise-coverage-converter").directory( - workingDirectory)); - assertThat(result.terminatedByTimeoutOrInterruption()).isFalse(); - System.out.println(result.getStdout()); + SystemTestUtils.runMavenTests(PROJECT_NAME); File testwiseCoverage = new File( Paths.get(workingDirectory.getAbsolutePath(), "target", "tia", "reports", "testwise-coverage-1.json") .toUri()); From 73dc4517aaa45a0bc5c1505d127496f586acafdc Mon Sep 17 00:00:00 2001 From: Johannes Veihelmann Date: Mon, 11 Dec 2023 13:31:47 +0100 Subject: [PATCH 10/44] TS-36294 make upload mojo compatible with testwise coverage --- .../tia/TiaMavenCoverageConverterTest.java | 47 ++--- .../maven/tia/TiaCoverageConvertMojo.java | 65 ++++--- .../com/teamscale/maven/tia/TiaMojoBase.java | 13 +- .../maven/upload/CoverageUploadMojo.java | 173 +++++++++++++----- 4 files changed, 190 insertions(+), 108 deletions(-) diff --git a/system-tests/tia-maven/src/test/java/com/teamscale/tia/TiaMavenCoverageConverterTest.java b/system-tests/tia-maven/src/test/java/com/teamscale/tia/TiaMavenCoverageConverterTest.java index f050e6af0..a3cc99b28 100644 --- a/system-tests/tia-maven/src/test/java/com/teamscale/tia/TiaMavenCoverageConverterTest.java +++ b/system-tests/tia-maven/src/test/java/com/teamscale/tia/TiaMavenCoverageConverterTest.java @@ -1,19 +1,19 @@ package com.teamscale.tia; -import com.squareup.moshi.JsonAdapter; -import com.squareup.moshi.Moshi; -import com.teamscale.report.testwise.model.ETestExecutionResult; -import com.teamscale.report.testwise.model.TestwiseCoverageReport; -import com.teamscale.test.commons.SystemTestUtils; -import org.junit.jupiter.api.Test; +import static org.assertj.core.api.Assertions.assertThat; +import static org.junit.jupiter.api.Assertions.assertAll; +import static org.junit.jupiter.api.Assertions.assertNotNull; import java.io.File; -import java.nio.file.Files; import java.nio.file.Paths; -import static org.assertj.core.api.Assertions.assertThat; -import static org.junit.jupiter.api.Assertions.assertAll; -import static org.junit.jupiter.api.Assertions.assertNotNull; +import org.conqat.lib.commons.filesystem.FileSystemUtils; +import org.junit.jupiter.api.Test; + +import com.teamscale.report.testwise.model.ETestExecutionResult; +import com.teamscale.report.testwise.model.TestwiseCoverageReport; +import com.teamscale.report.util.JsonUtils; +import com.teamscale.test.commons.SystemTestUtils; /** * Tests the automatic conversion of .exec files to a testwise coverage report. @@ -24,12 +24,11 @@ public class TiaMavenCoverageConverterTest { * The name of the project that the maven plugin is tested with. */ private static final String PROJECT_NAME = "maven-exec-file-project"; - private final JsonAdapter testwiseCoverageReportJsonAdapter = new Moshi.Builder().build() - .adapter(TestwiseCoverageReport.class); /** - * Starts a maven process with the reuseForks flag set to "false" and tiaMode "exec-file". Checks if the coverage - * can be converted to a testwise coverage report afterward. + * Starts a maven process with the reuseForks flag set to "false" and tiaMode + * "exec-file". Checks if the coverage can be converted to a testwise coverage + * report afterward. */ @Test public void testMavenTia() throws Exception { @@ -38,23 +37,17 @@ public void testMavenTia() throws Exception { File testwiseCoverage = new File( Paths.get(workingDirectory.getAbsolutePath(), "target", "tia", "reports", "testwise-coverage-1.json") .toUri()); - TestwiseCoverageReport testwiseCoverageReport = testwiseCoverageReportJsonAdapter.fromJson( - new String(Files.readAllBytes( - testwiseCoverage.toPath()))); + TestwiseCoverageReport testwiseCoverageReport = JsonUtils + .deserialize(FileSystemUtils.readFile(testwiseCoverage), TestwiseCoverageReport.class); assertNotNull(testwiseCoverageReport); assertAll(() -> { - assertThat(testwiseCoverageReport.tests).extracting(test -> test.uniformPath) - .contains("bar/TwoUnitTest/itBla()", "bar/TwoUnitTest/itFoo()", "bar/UnitTest/itBla()", - "bar/UnitTest/itFoo()"); + assertThat(testwiseCoverageReport.tests).extracting(test -> test.uniformPath).contains( + "bar/TwoUnitTest/itBla()", "bar/TwoUnitTest/itFoo()", "bar/UnitTest/itBla()", + "bar/UnitTest/itFoo()"); assertThat(testwiseCoverageReport.tests).extracting(test -> test.result) .doesNotContain(ETestExecutionResult.FAILURE); - assertThat(testwiseCoverageReport.tests).extracting(SystemTestUtils::getCoverageString) - .containsExactly("SUT.java:3,6-7", - "SUT.java:3,10-11", - "", - "SUT.java:3,6-7", - "SUT.java:3,10-11", - ""); + assertThat(testwiseCoverageReport.tests).extracting(SystemTestUtils::getCoverageString).containsExactly( + "SUT.java:3,6-7", "SUT.java:3,10-11", "", "SUT.java:3,6-7", "SUT.java:3,10-11", ""); }); } } diff --git a/teamscale-maven-plugin/src/main/java/com/teamscale/maven/tia/TiaCoverageConvertMojo.java b/teamscale-maven-plugin/src/main/java/com/teamscale/maven/tia/TiaCoverageConvertMojo.java index 359e80a3d..bba6382ce 100644 --- a/teamscale-maven-plugin/src/main/java/com/teamscale/maven/tia/TiaCoverageConvertMojo.java +++ b/teamscale-maven-plugin/src/main/java/com/teamscale/maven/tia/TiaCoverageConvertMojo.java @@ -1,15 +1,23 @@ -package com.teamscale.tia.maven; +package com.teamscale.maven.tia; + +import java.io.File; +import java.io.IOException; +import java.nio.file.Paths; +import java.util.ArrayList; +import java.util.List; -import com.google.common.base.Strings; -import com.teamscale.jacoco.agent.options.AgentOptionParseException; -import com.teamscale.jacoco.agent.options.ClasspathUtils; -import com.teamscale.jacoco.agent.options.FilePatternResolver; import org.apache.maven.plugin.AbstractMojo; import org.apache.maven.plugin.MojoFailureException; import org.apache.maven.plugins.annotations.LifecyclePhase; import org.apache.maven.plugins.annotations.Mojo; import org.apache.maven.plugins.annotations.Parameter; import org.apache.maven.plugins.annotations.ResolutionScope; + +import com.google.common.base.Strings; +import com.teamscale.jacoco.agent.options.AgentOptionParseException; +import com.teamscale.jacoco.agent.options.ClasspathUtils; +import com.teamscale.jacoco.agent.options.FilePatternResolver; + import shadow.com.teamscale.client.TestDetails; import shadow.com.teamscale.report.EDuplicateClassFileBehavior; import shadow.com.teamscale.report.ReportUtils; @@ -22,17 +30,11 @@ import shadow.com.teamscale.report.util.CommandLineLogger; import shadow.com.teamscale.report.util.ILogger; -import java.io.File; -import java.io.IOException; -import java.nio.file.Paths; -import java.util.ArrayList; -import java.util.List; - /** - * Batch converts all created .exec file reports into a testwise coverage report. + * Batch converts all created .exec file reports into a testwise coverage + * report. */ -@Mojo(name = "testwise-coverage-converter", defaultPhase = LifecyclePhase.VERIFY, - requiresDependencyResolution = ResolutionScope.RUNTIME) +@Mojo(name = "testwise-coverage-converter", defaultPhase = LifecyclePhase.VERIFY, requiresDependencyResolution = ResolutionScope.RUNTIME) public class TiaCoverageConvertMojo extends AbstractMojo { /** * Wildcard include patterns to apply during JaCoCo's traversal of class files. @@ -46,13 +48,15 @@ public class TiaCoverageConvertMojo extends AbstractMojo { public String[] excludes; /** - * After how many tests the testwise coverage should be split into multiple reports (Default is 5000)." + * After how many tests the testwise coverage should be split into multiple + * reports (Default is 5000)." */ @Parameter(defaultValue = "5000") public int splitAfter; /** - * The project build directory (usually: {@code ./target}). Provided automatically by Maven. + * The project build directory (usually: {@code ./target}). Provided + * automatically by Maven. */ @Parameter(defaultValue = "${project.build.directory}") public String projectBuildDir; @@ -68,18 +72,19 @@ public class TiaCoverageConvertMojo extends AbstractMojo { @Override public void execute() throws MojoFailureException { if (Strings.isNullOrEmpty(outputFolder)) { - outputFolder = Paths.get(projectBuildDir, "tia", "reports", "testwise-coverage.json").toString(); + outputFolder = Paths.get(projectBuildDir, "tia", "reports").toString(); } + String reportFilePath = Paths.get(outputFolder, "testwise-coverage.json").toString(); + List reportFiles = new ArrayList<>(); reportFiles.add(Paths.get(projectBuildDir, "tia").toAbsolutePath().resolve("reports").toFile()); logger.info("Generating the testwise coverage report"); JaCoCoTestwiseReportGenerator generator = createJaCoCoTestwiseReportGenerator(); TestInfoFactory testInfoFactory = createTestInfoFactory(reportFiles); - List jacocoExecutionDataList = ReportUtils - .listFiles(ETestArtifactFormat.JACOCO, reportFiles); + List jacocoExecutionDataList = ReportUtils.listFiles(ETestArtifactFormat.JACOCO, reportFiles); try (TestwiseCoverageReportWriter coverageWriter = new TestwiseCoverageReportWriter(testInfoFactory, - new File(outputFolder), splitAfter)) { + new File(reportFilePath), splitAfter)) { for (File executionDataFile : jacocoExecutionDataList) { logger.info("Writing execution data for file: " + executionDataFile.getName()); generator.convertAndConsume(executionDataFile, coverageWriter); @@ -91,12 +96,11 @@ public void execute() throws MojoFailureException { private TestInfoFactory createTestInfoFactory(List reportFiles) throws MojoFailureException { try { - List testDetails = ReportUtils.readObjects(ETestArtifactFormat.TEST_LIST, - TestDetails[].class, reportFiles); + List testDetails = ReportUtils.readObjects(ETestArtifactFormat.TEST_LIST, TestDetails[].class, + reportFiles); List testExecutions = ReportUtils.readObjects(ETestArtifactFormat.TEST_EXECUTION, TestExecution[].class, reportFiles); - logger.info( - "Writing report with " + testDetails.size() + " Details/" + testExecutions.size() + " Results"); + logger.info("Writing report with " + testDetails.size() + " Details/" + testExecutions.size() + " Results"); return new TestInfoFactory(testDetails, testExecutions); } catch (IOException e) { logger.error("Could not read test details from reports. Aborting."); @@ -115,12 +119,8 @@ private JaCoCoTestwiseReportGenerator createJaCoCoTestwiseReportGenerator() thro excludes = String.join(":", this.excludes); } try { - return new JaCoCoTestwiseReportGenerator( - getClassDirectoriesOrZips(), - new ClasspathWildcardIncludeFilter(includes, excludes), - EDuplicateClassFileBehavior.WARN, - logger - ); + return new JaCoCoTestwiseReportGenerator(getClassDirectoriesOrZips(), + new ClasspathWildcardIncludeFilter(includes, excludes), EDuplicateClassFileBehavior.WARN, logger); } catch (AgentOptionParseException e) { logger.error("Could not create testwise report generator. Aborting."); throw new MojoFailureException(e); @@ -130,8 +130,7 @@ private JaCoCoTestwiseReportGenerator createJaCoCoTestwiseReportGenerator() thro private List getClassDirectoriesOrZips() throws AgentOptionParseException { List classDirectoriesOrZips = new ArrayList<>(); classDirectoriesOrZips.add(projectBuildDir); - return ClasspathUtils - .resolveClasspathTextFiles("classes", new FilePatternResolver(new CommandLineLogger()), - classDirectoriesOrZips); + return ClasspathUtils.resolveClasspathTextFiles("classes", new FilePatternResolver(new CommandLineLogger()), + classDirectoriesOrZips); } } diff --git a/teamscale-maven-plugin/src/main/java/com/teamscale/maven/tia/TiaMojoBase.java b/teamscale-maven-plugin/src/main/java/com/teamscale/maven/tia/TiaMojoBase.java index a3eef8b7c..cfb40364c 100644 --- a/teamscale-maven-plugin/src/main/java/com/teamscale/maven/tia/TiaMojoBase.java +++ b/teamscale-maven-plugin/src/main/java/com/teamscale/maven/tia/TiaMojoBase.java @@ -236,7 +236,18 @@ private void validateTestPluginConfiguration(PluginExecution execution) throws M validateParallelizationParameter(configurationDom, "threadCount"); validateParallelizationParameter(configurationDom, "forkCount"); - + + Xpp3Dom parameterDom = configurationDom.getChild("reuseForks"); + if (parameterDom == null) { + return; + } + String value = parameterDom.getValue(); + if (value != null && !value.equals("true")) { + getLog().warn( + "You configured surefire to not reuse forks." + + " This has been shown to lead to performance decreases in combination with the Teamscale Maven Plugin." + + " If you notice performance problems, please have a look at our troubleshooting section for possible solutions: https://docs.teamscale.com/howto/providing-testwise-coverage/#troubleshooting."); + } } private void validateEngineNotConfigured(Xpp3Dom configurationDom, diff --git a/teamscale-maven-plugin/src/main/java/com/teamscale/maven/upload/CoverageUploadMojo.java b/teamscale-maven-plugin/src/main/java/com/teamscale/maven/upload/CoverageUploadMojo.java index 6efc2ab76..e83daf4b4 100644 --- a/teamscale-maven-plugin/src/main/java/com/teamscale/maven/upload/CoverageUploadMojo.java +++ b/teamscale-maven-plugin/src/main/java/com/teamscale/maven/upload/CoverageUploadMojo.java @@ -1,7 +1,15 @@ package com.teamscale.maven.upload; -import com.teamscale.maven.GitCommit; -import com.teamscale.maven.TeamscaleMojoBase; +import java.io.File; +import java.io.IOException; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import java.util.Optional; +import java.util.stream.Collectors; + import org.apache.commons.lang3.StringUtils; import org.apache.maven.plugin.MojoFailureException; import org.apache.maven.plugins.annotations.LifecyclePhase; @@ -10,27 +18,26 @@ import org.apache.maven.plugins.annotations.ResolutionScope; import org.apache.maven.project.MavenProject; import org.codehaus.plexus.util.xml.Xpp3Dom; + +import com.google.common.base.Strings; +import com.teamscale.maven.GitCommit; +import com.teamscale.maven.TeamscaleMojoBase; + import shadow.com.teamscale.client.CommitDescriptor; import shadow.com.teamscale.client.EReportFormat; import shadow.com.teamscale.client.TeamscaleClient; -import java.io.File; -import java.io.IOException; -import java.nio.file.Path; -import java.nio.file.Paths; -import java.util.ArrayList; -import java.util.List; -import java.util.Optional; - /** - * Run this goal after the Jacoco report generation to upload them to a configured Teamscale instance. - * The configuration can be specified in the root Maven project. - * Offers the following functionality: + * Run this goal after the Jacoco report generation to upload them to a + * configured Teamscale instance. The configuration can be specified in the root + * Maven project. Offers the following functionality: *
    - *
  1. Validate Jacoco Maven plugin configuration
  2. - *
  3. Locate and upload all reports in one session
  4. + *
  5. Validate Jacoco Maven plugin configuration
  6. + *
  7. Locate and upload all reports in one session
  8. *
- * @see Jacoco Plugin + * + * @see Jacoco + * Plugin */ @Mojo(name = "upload-coverage", defaultPhase = LifecyclePhase.VERIFY, requiresDependencyResolution = ResolutionScope.RUNTIME, threadSafe = true) @@ -41,38 +48,74 @@ public class CoverageUploadMojo extends TeamscaleMojoBase { private static final String COVERAGE_UPLOAD_MESSAGE = "Coverage upload via Teamscale Maven plugin"; /** - * The Teamscale partition name to which unit test reports will be uploaded + * The Teamscale partition name to which unit test reports will be uploaded. */ @Parameter(property = "teamscale.unitTestPartition", defaultValue = "Unit Tests") public String unitTestPartition; /** - * The Teamscale partition name to which integration test reports will be uploaded + * The Teamscale partition name to which integration test reports will be + * uploaded. */ @Parameter(property = "teamscale.integrationTestPartition", defaultValue = "Integration Tests") public String integrationTestPartition; /** - * The Teamscale partition name to which aggregated test reports will be uploaded + * The Teamscale partition name to which aggregated test reports will be + * uploaded. */ @Parameter(property = "teamscale.aggregatedTestPartition", defaultValue = "Aggregated Tests") public String aggregatedTestPartition; + /** + * Whether to upload testwise coverage as a result of the + * TiaCoverageConvertMojo. + */ + @Parameter(property = "teamscale.uploadTestwise", defaultValue = "false") + public boolean uploadTestwiseCoverage; + + /** + * The output directory of the testwise coverage reports. Should only be set if + * testwise coverage is uploaded. + */ + @Parameter() + public String testwiseCoverageOutputFolder; + + /** + * The Teamscale partition name to which testwise coverage reports will be + * uploaded. + */ + @Parameter(property = "teamscale.testwisePartition", defaultValue = "Testwise Coverage") + public String testwisePartition; + /** * Paths to all reports generated by subprojects - * @see report + * + * @see report */ private final List reportGoalOutputFiles = new ArrayList<>(); /** * Paths to all integration reports generated by subprojects - * @see report-integration + * + * @see report-integration */ private final List reportIntegrationGoalOutputFiles = new ArrayList<>(); + /** + * The project build directory (usually: {@code ./target}). Provided + * automatically by Maven. + */ + @Parameter(defaultValue = "${project.build.directory}") + public String projectBuildDir; + /** * Paths to all aggregated reports generated by subprojects - * @see report-aggregate + * + * @see report-aggregate */ private final List reportAggregateGoalOutputFiles = new ArrayList<>(); @@ -101,53 +144,85 @@ public void execute() throws MojoFailureException { getLog().debug("Uploading coverage reports"); uploadCoverageReports(); } catch (IOException e) { - throw new MojoFailureException("Uploading coverage reports failed. No upload to Teamscale was performed. You can try again or upload the XML coverage reports manually, see https://docs.teamscale.com/reference/ui/project/project/#manual-report-upload", e); + throw new MojoFailureException( + "Uploading coverage reports failed. No upload to Teamscale was performed. You can try again or upload the XML coverage reports manually, see https://docs.teamscale.com/reference/ui/project/project/#manual-report-upload", + e); } } /** - * Check that Jacoco is set up correctly and read any custom settings that may have been set - * @throws MojoFailureException If Jacoco is not set up correctly + * Check that Jacoco is set up correctly and read any custom settings that may + * have been set + * + * @throws MojoFailureException + * If Jacoco is not set up correctly */ private void parseJacocoConfiguration() throws MojoFailureException { collectReportOutputDirectory(session.getTopLevelProject(), "report", "jacoco", reportGoalOutputFiles); - collectReportOutputDirectory(session.getTopLevelProject(), "report-integration", "jacoco-it", reportIntegrationGoalOutputFiles); - collectReportOutputDirectory(session.getTopLevelProject(), "report-aggregate", "jacoco-aggregate", reportAggregateGoalOutputFiles); - getLog().debug(String.format("Found %d sub-modules", session.getTopLevelProject().getCollectedProjects().size())); + collectReportOutputDirectory(session.getTopLevelProject(), "report-integration", "jacoco-it", + reportIntegrationGoalOutputFiles); + collectReportOutputDirectory(session.getTopLevelProject(), "report-aggregate", "jacoco-aggregate", + reportAggregateGoalOutputFiles); + getLog().debug( + String.format("Found %d sub-modules", session.getTopLevelProject().getCollectedProjects().size())); for (MavenProject subProject : session.getTopLevelProject().getCollectedProjects()) { collectReportOutputDirectory(subProject, "report", "jacoco", reportGoalOutputFiles); - collectReportOutputDirectory(subProject, "report-integration", "jacoco-it", reportIntegrationGoalOutputFiles); - collectReportOutputDirectory(subProject, "report-aggregate", "jacoco-aggregate", reportAggregateGoalOutputFiles); + collectReportOutputDirectory(subProject, "report-integration", "jacoco-it", + reportIntegrationGoalOutputFiles); + collectReportOutputDirectory(subProject, "report-aggregate", "jacoco-aggregate", + reportAggregateGoalOutputFiles); } } /** - * Collect the file locations in which JaCoCo is configured to save the XML coverage reports - * @param project The project - * @param reportGoal The JaCoCo report goal - * @param jacocoDirectory The name of the directory, matching the JaCoCo goal + * Collect the file locations in which JaCoCo is configured to save the XML + * coverage reports + * + * @param project + * The project + * @param reportGoal + * The JaCoCo report goal + * @param jacocoDirectory + * The name of the directory, matching the JaCoCo goal * @see Goals */ - private void collectReportOutputDirectory(MavenProject project, String reportGoal, String jacocoDirectory, List reportOutputFiles) throws MojoFailureException { + private void collectReportOutputDirectory(MavenProject project, String reportGoal, String jacocoDirectory, + List reportOutputFiles) throws MojoFailureException { Path defaultOutputDirectory = Paths.get(project.getReporting().getOutputDirectory()); // If a Dom is null it means the execution goal uses default parameters which work correctly - Xpp3Dom reportConfigurationDom = getJacocoGoalExecutionConfiguration(project,reportGoal); + Xpp3Dom reportConfigurationDom = getJacocoGoalExecutionConfiguration(project, reportGoal); String errorMessage = "Skipping upload for %s as %s is not configured to produce XML reports for goal %s. See https://www.jacoco.org/jacoco/trunk/doc/report-mojo.html#formats"; if (!validateReportFormat(reportConfigurationDom)) { - throw new MojoFailureException(String.format(errorMessage, project.getName(), JACOCO_PLUGIN_NAME, jacocoDirectory)); + throw new MojoFailureException( + String.format(errorMessage, project.getName(), JACOCO_PLUGIN_NAME, jacocoDirectory)); } - Path resolvedOutputDir = getCustomOutputDirectory(reportConfigurationDom).orElse(defaultOutputDirectory.resolve(jacocoDirectory).resolve("jacoco.xml")); - getLog().debug(String.format("Adding possible report location: %s", resolvedOutputDir)); - reportOutputFiles.add(resolvedOutputDir); + Path resolvedCoverageFile = getCustomOutputDirectory(reportConfigurationDom).orElse(defaultOutputDirectory) + .resolve(jacocoDirectory).resolve("jacoco.xml"); + getLog().debug(String.format("Adding possible report location: %s", resolvedCoverageFile)); + reportOutputFiles.add(resolvedCoverageFile); } private void uploadCoverageReports() throws IOException { - uploadCoverage(reportGoalOutputFiles, unitTestPartition); - uploadCoverage(reportIntegrationGoalOutputFiles, integrationTestPartition); - uploadCoverage(reportAggregateGoalOutputFiles, aggregatedTestPartition); + if (uploadTestwiseCoverage) { + getLog().debug("Uploading only testwise coverage to partition " + testwisePartition); + Path reportPath; + if (Strings.isNullOrEmpty(testwiseCoverageOutputFolder)) { + reportPath = Paths.get(projectBuildDir, "tia", "reports"); + } else { + reportPath = Paths.get(testwiseCoverageOutputFolder); + } + List coverageFiles = Arrays.asList(reportPath.toFile().listFiles(File::isFile)); + uploadCoverage(coverageFiles.stream().map(File::toPath).collect(Collectors.toList()), testwisePartition, + EReportFormat.TESTWISE_COVERAGE); + return; + } + uploadCoverage(reportGoalOutputFiles, unitTestPartition, EReportFormat.JACOCO); + uploadCoverage(reportIntegrationGoalOutputFiles, integrationTestPartition, EReportFormat.JACOCO); + uploadCoverage(reportAggregateGoalOutputFiles, aggregatedTestPartition, EReportFormat.JACOCO); } - private void uploadCoverage(List reportOutputFiles, String partition) throws IOException { + private void uploadCoverage(List reportOutputFiles, String partition, EReportFormat format) + throws IOException { List reports = new ArrayList<>(); getLog().debug(String.format("Scanning through %d locations for %s...", reportOutputFiles.size(), partition)); for (Path reportPath : reportOutputFiles) { @@ -163,8 +238,10 @@ private void uploadCoverage(List reportOutputFiles, String partition) thro reports.add(report); } if (!reports.isEmpty()) { - getLog().info(String.format("Uploading %d Jacoco report for project %s to %s", reports.size(), projectId, partition)); - teamscaleClient.uploadReports(EReportFormat.JACOCO, reports, CommitDescriptor.parse(resolvedCommit), revision, partition, COVERAGE_UPLOAD_MESSAGE); + getLog().info(String.format("Uploading %d Jacoco report for project %s to %s", reports.size(), projectId, + partition)); + teamscaleClient.uploadReports(format, reports, CommitDescriptor.parse(resolvedCommit), revision, partition, + COVERAGE_UPLOAD_MESSAGE); } else { getLog().info(String.format("Found no valid reports for %s", partition)); } @@ -172,7 +249,9 @@ private void uploadCoverage(List reportOutputFiles, String partition) thro /** * Validates that a configuration Dom is set up to generate XML reports - * @param configurationDom The configuration Dom of a goal execution + * + * @param configurationDom + * The configuration Dom of a goal execution */ private boolean validateReportFormat(Xpp3Dom configurationDom) { if (configurationDom == null || configurationDom.getChild("formats") == null) { From a49a88e43a984864bfc342ab16f5289da6907fc0 Mon Sep 17 00:00:00 2001 From: Johannes Veihelmann Date: Tue, 23 Jan 2024 11:28:56 +0100 Subject: [PATCH 11/44] TS-36294 changed logic to always include tia uploads --- .../maven/upload/CoverageUploadMojo.java | 61 ++++++++----------- 1 file changed, 26 insertions(+), 35 deletions(-) diff --git a/teamscale-maven-plugin/src/main/java/com/teamscale/maven/upload/CoverageUploadMojo.java b/teamscale-maven-plugin/src/main/java/com/teamscale/maven/upload/CoverageUploadMojo.java index e83daf4b4..a588caece 100644 --- a/teamscale-maven-plugin/src/main/java/com/teamscale/maven/upload/CoverageUploadMojo.java +++ b/teamscale-maven-plugin/src/main/java/com/teamscale/maven/upload/CoverageUploadMojo.java @@ -1,15 +1,8 @@ package com.teamscale.maven.upload; -import java.io.File; -import java.io.IOException; -import java.nio.file.Path; -import java.nio.file.Paths; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.List; -import java.util.Optional; -import java.util.stream.Collectors; - +import com.google.common.base.Strings; +import com.teamscale.maven.GitCommit; +import com.teamscale.maven.TeamscaleMojoBase; import org.apache.commons.lang3.StringUtils; import org.apache.maven.plugin.MojoFailureException; import org.apache.maven.plugins.annotations.LifecyclePhase; @@ -18,15 +11,20 @@ import org.apache.maven.plugins.annotations.ResolutionScope; import org.apache.maven.project.MavenProject; import org.codehaus.plexus.util.xml.Xpp3Dom; - -import com.google.common.base.Strings; -import com.teamscale.maven.GitCommit; -import com.teamscale.maven.TeamscaleMojoBase; - import shadow.com.teamscale.client.CommitDescriptor; import shadow.com.teamscale.client.EReportFormat; import shadow.com.teamscale.client.TeamscaleClient; +import java.io.File; +import java.io.IOException; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import java.util.Optional; +import java.util.stream.Collectors; + /** * Run this goal after the Jacoco report generation to upload them to a * configured Teamscale instance. The configuration can be specified in the root @@ -67,13 +65,6 @@ public class CoverageUploadMojo extends TeamscaleMojoBase { @Parameter(property = "teamscale.aggregatedTestPartition", defaultValue = "Aggregated Tests") public String aggregatedTestPartition; - /** - * Whether to upload testwise coverage as a result of the - * TiaCoverageConvertMojo. - */ - @Parameter(property = "teamscale.uploadTestwise", defaultValue = "false") - public boolean uploadTestwiseCoverage; - /** * The output directory of the testwise coverage reports. Should only be set if * testwise coverage is uploaded. @@ -203,19 +194,18 @@ private void collectReportOutputDirectory(MavenProject project, String reportGoa } private void uploadCoverageReports() throws IOException { - if (uploadTestwiseCoverage) { - getLog().debug("Uploading only testwise coverage to partition " + testwisePartition); - Path reportPath; - if (Strings.isNullOrEmpty(testwiseCoverageOutputFolder)) { - reportPath = Paths.get(projectBuildDir, "tia", "reports"); - } else { - reportPath = Paths.get(testwiseCoverageOutputFolder); - } - List coverageFiles = Arrays.asList(reportPath.toFile().listFiles(File::isFile)); - uploadCoverage(coverageFiles.stream().map(File::toPath).collect(Collectors.toList()), testwisePartition, - EReportFormat.TESTWISE_COVERAGE); - return; + Path reportPath; + if (Strings.isNullOrEmpty(testwiseCoverageOutputFolder)) { + reportPath = Paths.get(projectBuildDir, "tia", "reports"); + } else { + reportPath = Paths.get(testwiseCoverageOutputFolder); + } + List coverageFiles = Arrays.asList(reportPath.toFile().listFiles(File::isFile)); + if (!coverageFiles.isEmpty()) { + getLog().debug("Uploading testwise coverage to partition " + testwisePartition); } + uploadCoverage(coverageFiles.stream().map(File::toPath).collect(Collectors.toList()), testwisePartition, + EReportFormat.TESTWISE_COVERAGE); uploadCoverage(reportGoalOutputFiles, unitTestPartition, EReportFormat.JACOCO); uploadCoverage(reportIntegrationGoalOutputFiles, integrationTestPartition, EReportFormat.JACOCO); uploadCoverage(reportAggregateGoalOutputFiles, aggregatedTestPartition, EReportFormat.JACOCO); @@ -238,7 +228,8 @@ private void uploadCoverage(List reportOutputFiles, String partition, ERep reports.add(report); } if (!reports.isEmpty()) { - getLog().info(String.format("Uploading %d Jacoco report for project %s to %s", reports.size(), projectId, + getLog().info( + String.format("Uploading %d report for project %s to %s", reports.size(), projectId, partition)); teamscaleClient.uploadReports(format, reports, CommitDescriptor.parse(resolvedCommit), revision, partition, COVERAGE_UPLOAD_MESSAGE); From dfb1c3b41b79fc8b6b5c0c08e548334e473e9220 Mon Sep 17 00:00:00 2001 From: Johannes Veihelmann Date: Tue, 23 Jan 2024 13:25:44 +0100 Subject: [PATCH 12/44] TS-36294 prevent nullpointerexception --- .../com/teamscale/maven/upload/CoverageUploadMojo.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/teamscale-maven-plugin/src/main/java/com/teamscale/maven/upload/CoverageUploadMojo.java b/teamscale-maven-plugin/src/main/java/com/teamscale/maven/upload/CoverageUploadMojo.java index a588caece..e361ed8ab 100644 --- a/teamscale-maven-plugin/src/main/java/com/teamscale/maven/upload/CoverageUploadMojo.java +++ b/teamscale-maven-plugin/src/main/java/com/teamscale/maven/upload/CoverageUploadMojo.java @@ -200,12 +200,14 @@ private void uploadCoverageReports() throws IOException { } else { reportPath = Paths.get(testwiseCoverageOutputFolder); } - List coverageFiles = Arrays.asList(reportPath.toFile().listFiles(File::isFile)); - if (!coverageFiles.isEmpty()) { + File[] files = reportPath.toFile().listFiles(File::isFile); + if (files != null) { + List testwiseCoverageFiles = Arrays.asList(files); getLog().debug("Uploading testwise coverage to partition " + testwisePartition); + uploadCoverage(testwiseCoverageFiles.stream().map(File::toPath).collect(Collectors.toList()), + testwisePartition, EReportFormat.TESTWISE_COVERAGE); + } - uploadCoverage(coverageFiles.stream().map(File::toPath).collect(Collectors.toList()), testwisePartition, - EReportFormat.TESTWISE_COVERAGE); uploadCoverage(reportGoalOutputFiles, unitTestPartition, EReportFormat.JACOCO); uploadCoverage(reportIntegrationGoalOutputFiles, integrationTestPartition, EReportFormat.JACOCO); uploadCoverage(reportAggregateGoalOutputFiles, aggregatedTestPartition, EReportFormat.JACOCO); From 29e0750780a0c4fd9579fd0b287bfbf83b2857a3 Mon Sep 17 00:00:00 2001 From: Johannes Veihelmann Date: Tue, 23 Jan 2024 14:12:30 +0100 Subject: [PATCH 13/44] TS-36294 change import --- .../tia/TiaMavenCoverageConverterTest.java | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/system-tests/tia-maven/src/test/java/com/teamscale/tia/TiaMavenCoverageConverterTest.java b/system-tests/tia-maven/src/test/java/com/teamscale/tia/TiaMavenCoverageConverterTest.java index a3cc99b28..7f8f1baaa 100644 --- a/system-tests/tia-maven/src/test/java/com/teamscale/tia/TiaMavenCoverageConverterTest.java +++ b/system-tests/tia-maven/src/test/java/com/teamscale/tia/TiaMavenCoverageConverterTest.java @@ -1,19 +1,18 @@ package com.teamscale.tia; -import static org.assertj.core.api.Assertions.assertThat; -import static org.junit.jupiter.api.Assertions.assertAll; -import static org.junit.jupiter.api.Assertions.assertNotNull; +import com.teamscale.client.JsonUtils; +import com.teamscale.report.testwise.model.ETestExecutionResult; +import com.teamscale.report.testwise.model.TestwiseCoverageReport; +import com.teamscale.test.commons.SystemTestUtils; +import org.conqat.lib.commons.filesystem.FileSystemUtils; +import org.junit.jupiter.api.Test; import java.io.File; import java.nio.file.Paths; -import org.conqat.lib.commons.filesystem.FileSystemUtils; -import org.junit.jupiter.api.Test; - -import com.teamscale.report.testwise.model.ETestExecutionResult; -import com.teamscale.report.testwise.model.TestwiseCoverageReport; -import com.teamscale.report.util.JsonUtils; -import com.teamscale.test.commons.SystemTestUtils; +import static org.assertj.core.api.Assertions.assertThat; +import static org.junit.jupiter.api.Assertions.assertAll; +import static org.junit.jupiter.api.Assertions.assertNotNull; /** * Tests the automatic conversion of .exec files to a testwise coverage report. From 85273604ed4f7b449bf8aa48a76a50331b8d1d66 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 2 Feb 2024 18:30:52 +0000 Subject: [PATCH 14/44] Update dependency gradle to v8.6 --- gradle/wrapper/gradle-wrapper.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index e6aba2515..2ea3535dc 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-all.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME From 89024102524311c3226ec9a38717ee125d3f05eb Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 4 Feb 2024 09:48:35 +0000 Subject: [PATCH 15/44] Update dependency org.junit.jupiter:junit-jupiter-engine to v5.10.2 --- teamscale-maven-plugin/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teamscale-maven-plugin/pom.xml b/teamscale-maven-plugin/pom.xml index d569279e9..bebf568da 100644 --- a/teamscale-maven-plugin/pom.xml +++ b/teamscale-maven-plugin/pom.xml @@ -65,7 +65,7 @@ org.junit.jupiter junit-jupiter-engine - 5.10.1 + 5.10.2 test From d09bc783d50f5b30a057c46858e2bf73d966602c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 4 Feb 2024 09:48:40 +0000 Subject: [PATCH 16/44] Update dependency org.junit.vintage:junit-vintage-engine to v5.10.2 --- .../src/test/resources/calculator_groovy/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teamscale-gradle-plugin/src/test/resources/calculator_groovy/build.gradle b/teamscale-gradle-plugin/src/test/resources/calculator_groovy/build.gradle index ab40e0744..35893df5b 100644 --- a/teamscale-gradle-plugin/src/test/resources/calculator_groovy/build.gradle +++ b/teamscale-gradle-plugin/src/test/resources/calculator_groovy/build.gradle @@ -14,7 +14,7 @@ plugins { import com.teamscale.TestImpacted ext.junit4Version = '4.13.2' -ext.junitVintageVersion = '5.10.1' +ext.junitVintageVersion = '5.10.2' ext.junitPlatformVersion = '1.4.0' ext.junitJupiterVersion = '5.10.1' From 6c053252fc4068118ce407752ca06ae707009c2a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 4 Feb 2024 11:18:53 +0000 Subject: [PATCH 17/44] Update junitJupiterVersion to v5.10.2 --- .../src/test/resources/calculator_groovy/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teamscale-gradle-plugin/src/test/resources/calculator_groovy/build.gradle b/teamscale-gradle-plugin/src/test/resources/calculator_groovy/build.gradle index 35893df5b..7534ad288 100644 --- a/teamscale-gradle-plugin/src/test/resources/calculator_groovy/build.gradle +++ b/teamscale-gradle-plugin/src/test/resources/calculator_groovy/build.gradle @@ -16,7 +16,7 @@ import com.teamscale.TestImpacted ext.junit4Version = '4.13.2' ext.junitVintageVersion = '5.10.2' ext.junitPlatformVersion = '1.4.0' -ext.junitJupiterVersion = '5.10.1' +ext.junitJupiterVersion = '5.10.2' if (!project.hasProperty("withoutServerConfig")) { teamscale { From 80a1366b8c2101732e9bc1d1ebaefb6c95b477fa Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 4 Feb 2024 12:14:25 +0000 Subject: [PATCH 18/44] Update junitPlatform to v1.10.2 --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 2fb6801f0..658c100c6 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -10,7 +10,7 @@ jacoco = "0.8.11" logback = "1.3.14" retrofit = "2.9.0" junit = "5.10.1" -junitPlatform = "1.10.1" +junitPlatform = "1.10.2" okhttp = "4.12.0" mockito = "4.11.0" picocli = "4.7.5" From 820efd2dc82a4a89e3d290db5362373f4b81eb27 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 4 Feb 2024 21:09:15 +0000 Subject: [PATCH 19/44] Update junit to v5.10.2 --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 658c100c6..a3d706a02 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -9,7 +9,7 @@ jacoco = "0.8.11" # We need to stay on the 1.3.x release line as 1.4.x requires Java 11 logback = "1.3.14" retrofit = "2.9.0" -junit = "5.10.1" +junit = "5.10.2" junitPlatform = "1.10.2" okhttp = "4.12.0" mockito = "4.11.0" From 5f27442c15f236d28c384f5da77f12283d1047d3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 00:12:17 +0000 Subject: [PATCH 20/44] Update dependency org.assertj:assertj-core to v3.25.3 --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 658c100c6..b1e29d100 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -65,7 +65,7 @@ junit-platform-engine = { module = "org.junit.platform:junit-platform-engine", v junit-platform-commons = { module = "org.junit.platform:junit-platform-commons", version.ref = "junitPlatform" } junit4 = { module = "junit:junit", version = "4.13.2" } -assertj = { module = "org.assertj:assertj-core", version = "3.25.2" } +assertj = { module = "org.assertj:assertj-core", version = "3.25.3" } jsonassert = { module = "org.skyscreamer:jsonassert", version = "1.5.1" } mockito-core = { module = "org.mockito:mockito-core", version.ref = "mockito" } From 0bffb95cd02bd6dd7396e4ec57d6b3818836256d Mon Sep 17 00:00:00 2001 From: Johannes Veihelmann Date: Mon, 5 Feb 2024 14:13:02 +0100 Subject: [PATCH 21/44] TS-36294 add functionality to combine reports from submodules --- .../maven/tia/TiaCoverageConvertMojo.java | 81 ++++++++++++------- 1 file changed, 52 insertions(+), 29 deletions(-) diff --git a/teamscale-maven-plugin/src/main/java/com/teamscale/maven/tia/TiaCoverageConvertMojo.java b/teamscale-maven-plugin/src/main/java/com/teamscale/maven/tia/TiaCoverageConvertMojo.java index bba6382ce..e299205e9 100644 --- a/teamscale-maven-plugin/src/main/java/com/teamscale/maven/tia/TiaCoverageConvertMojo.java +++ b/teamscale-maven-plugin/src/main/java/com/teamscale/maven/tia/TiaCoverageConvertMojo.java @@ -1,23 +1,17 @@ package com.teamscale.maven.tia; -import java.io.File; -import java.io.IOException; -import java.nio.file.Paths; -import java.util.ArrayList; -import java.util.List; - +import com.google.common.base.Strings; +import com.teamscale.jacoco.agent.options.AgentOptionParseException; +import com.teamscale.jacoco.agent.options.ClasspathUtils; +import com.teamscale.jacoco.agent.options.FilePatternResolver; +import org.apache.maven.execution.MavenSession; import org.apache.maven.plugin.AbstractMojo; import org.apache.maven.plugin.MojoFailureException; import org.apache.maven.plugins.annotations.LifecyclePhase; import org.apache.maven.plugins.annotations.Mojo; import org.apache.maven.plugins.annotations.Parameter; import org.apache.maven.plugins.annotations.ResolutionScope; - -import com.google.common.base.Strings; -import com.teamscale.jacoco.agent.options.AgentOptionParseException; -import com.teamscale.jacoco.agent.options.ClasspathUtils; -import com.teamscale.jacoco.agent.options.FilePatternResolver; - +import org.apache.maven.project.MavenProject; import shadow.com.teamscale.client.TestDetails; import shadow.com.teamscale.report.EDuplicateClassFileBehavior; import shadow.com.teamscale.report.ReportUtils; @@ -30,6 +24,14 @@ import shadow.com.teamscale.report.util.CommandLineLogger; import shadow.com.teamscale.report.util.ILogger; +import java.io.File; +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.ArrayList; +import java.util.List; + /** * Batch converts all created .exec file reports into a testwise coverage * report. @@ -49,7 +51,7 @@ public class TiaCoverageConvertMojo extends AbstractMojo { /** * After how many tests the testwise coverage should be split into multiple - * reports (Default is 5000)." + * reports (Default is 5000). */ @Parameter(defaultValue = "5000") public int splitAfter; @@ -67,22 +69,37 @@ public class TiaCoverageConvertMojo extends AbstractMojo { @Parameter() public String outputFolder; + /** + * The running Maven session. Provided automatically by Maven. + */ + @Parameter(defaultValue = "${session}") + public MavenSession session; private final ILogger logger = new CommandLineLogger(); @Override public void execute() throws MojoFailureException { + + List reportFileDirectories = new ArrayList<>(); + reportFileDirectories.add(Paths.get(projectBuildDir, "tia").toAbsolutePath().resolve("reports").toFile()); + List classfileDirectories; if (Strings.isNullOrEmpty(outputFolder)) { outputFolder = Paths.get(projectBuildDir, "tia", "reports").toString(); } + Path reportOutFolder = Paths.get(outputFolder); + try { + Files.createDirectories(reportOutFolder); + classfileDirectories = getClassDirectoriesOrZips(projectBuildDir); + findSubprojectReportAndClassDirectories(reportFileDirectories, classfileDirectories); + } catch (IOException | AgentOptionParseException e) { + logger.error("Could not create testwise report generator. Aborting."); + throw new MojoFailureException(e); + } + logger.info("Generating the testwise coverage report"); + JaCoCoTestwiseReportGenerator generator = createJaCoCoTestwiseReportGenerator(classfileDirectories); + TestInfoFactory testInfoFactory = createTestInfoFactory(reportFileDirectories); + List jacocoExecutionDataList = ReportUtils.listFiles(ETestArtifactFormat.JACOCO, reportFileDirectories); String reportFilePath = Paths.get(outputFolder, "testwise-coverage.json").toString(); - List reportFiles = new ArrayList<>(); - reportFiles.add(Paths.get(projectBuildDir, "tia").toAbsolutePath().resolve("reports").toFile()); - - logger.info("Generating the testwise coverage report"); - JaCoCoTestwiseReportGenerator generator = createJaCoCoTestwiseReportGenerator(); - TestInfoFactory testInfoFactory = createTestInfoFactory(reportFiles); - List jacocoExecutionDataList = ReportUtils.listFiles(ETestArtifactFormat.JACOCO, reportFiles); try (TestwiseCoverageReportWriter coverageWriter = new TestwiseCoverageReportWriter(testInfoFactory, new File(reportFilePath), splitAfter)) { for (File executionDataFile : jacocoExecutionDataList) { @@ -94,6 +111,17 @@ public void execute() throws MojoFailureException { } } + private void findSubprojectReportAndClassDirectories(List reportFiles, + List classFiles) throws AgentOptionParseException { + + for (MavenProject subProject : session.getTopLevelProject().getCollectedProjects()) { + String subprojectBuildDirectory = subProject.getBuild().getDirectory(); + reportFiles.add(Paths.get(subprojectBuildDirectory, "tia").toAbsolutePath().resolve("reports") + .toFile()); + classFiles.addAll(getClassDirectoriesOrZips(subprojectBuildDirectory)); + } + } + private TestInfoFactory createTestInfoFactory(List reportFiles) throws MojoFailureException { try { List testDetails = ReportUtils.readObjects(ETestArtifactFormat.TEST_LIST, TestDetails[].class, @@ -109,7 +137,7 @@ private TestInfoFactory createTestInfoFactory(List reportFiles) throws Moj } - private JaCoCoTestwiseReportGenerator createJaCoCoTestwiseReportGenerator() throws MojoFailureException { + private JaCoCoTestwiseReportGenerator createJaCoCoTestwiseReportGenerator(List classFiles) { String includes = null; if (this.includes != null) { includes = String.join(":", this.includes); @@ -118,16 +146,11 @@ private JaCoCoTestwiseReportGenerator createJaCoCoTestwiseReportGenerator() thro if (this.excludes != null) { excludes = String.join(":", this.excludes); } - try { - return new JaCoCoTestwiseReportGenerator(getClassDirectoriesOrZips(), - new ClasspathWildcardIncludeFilter(includes, excludes), EDuplicateClassFileBehavior.WARN, logger); - } catch (AgentOptionParseException e) { - logger.error("Could not create testwise report generator. Aborting."); - throw new MojoFailureException(e); - } + return new JaCoCoTestwiseReportGenerator(classFiles, + new ClasspathWildcardIncludeFilter(includes, excludes), EDuplicateClassFileBehavior.WARN, logger); } - private List getClassDirectoriesOrZips() throws AgentOptionParseException { + private List getClassDirectoriesOrZips(String projectBuildDir) throws AgentOptionParseException { List classDirectoriesOrZips = new ArrayList<>(); classDirectoriesOrZips.add(projectBuildDir); return ClasspathUtils.resolveClasspathTextFiles("classes", new FilePatternResolver(new CommandLineLogger()), From 35b14906384da926b39fae30cf13cc499bddbd51 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 22:22:30 +0000 Subject: [PATCH 22/44] Update dependency org.slf4j:slf4j-api to v2.0.12 --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 658c100c6..a0689b575 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -50,7 +50,7 @@ spark = { module = "com.sparkjava:spark-core", version = "2.9.4" } jcommander = { module = "com.beust:jcommander", version = "1.82" } teamscaleLibCommons = { module = "com.teamscale:teamscale-lib-commons", version = "9.4.1" } commonsCodec = { module = "commons-codec:commons-codec", version = "1.16.0" } -slf4j-api = { module = "org.slf4j:slf4j-api", version = "2.0.11" } +slf4j-api = { module = "org.slf4j:slf4j-api", version = "2.0.12" } jgit = { module = "org.eclipse.jgit:org.eclipse.jgit", version = "6.8.0.202311291450-r" } okio = { module = "com.squareup.okio:okio", version = "3.7.0" } From 84d68cd9f1a91e13736ba036fc5433fad69b1b82 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 10 Feb 2024 00:04:01 +0000 Subject: [PATCH 23/44] Update dependency com.squareup.okio:okio to v3.8.0 --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 658c100c6..a4ed34eb1 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -52,7 +52,7 @@ teamscaleLibCommons = { module = "com.teamscale:teamscale-lib-commons", version commonsCodec = { module = "commons-codec:commons-codec", version = "1.16.0" } slf4j-api = { module = "org.slf4j:slf4j-api", version = "2.0.11" } jgit = { module = "org.eclipse.jgit:org.eclipse.jgit", version = "6.8.0.202311291450-r" } -okio = { module = "com.squareup.okio:okio", version = "3.7.0" } +okio = { module = "com.squareup.okio:okio", version = "3.8.0" } picocli-core = { module = "info.picocli:picocli", version.ref = "picocli" } picocli-codegen = { module = "info.picocli:picocli-codegen", version.ref = "picocli" } From d552fca0522d26f596371b2fab93dddb56fa04cf Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 13 Feb 2024 05:21:38 +0000 Subject: [PATCH 24/44] Update dependency commons-codec:commons-codec to v1.16.1 --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index c94515baf..304582778 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -49,7 +49,7 @@ okhttp-mockwebserver = { module = "com.squareup.okhttp3:mockwebserver", version. spark = { module = "com.sparkjava:spark-core", version = "2.9.4" } jcommander = { module = "com.beust:jcommander", version = "1.82" } teamscaleLibCommons = { module = "com.teamscale:teamscale-lib-commons", version = "9.4.1" } -commonsCodec = { module = "commons-codec:commons-codec", version = "1.16.0" } +commonsCodec = { module = "commons-codec:commons-codec", version = "1.16.1" } slf4j-api = { module = "org.slf4j:slf4j-api", version = "2.0.12" } jgit = { module = "org.eclipse.jgit:org.eclipse.jgit", version = "6.8.0.202311291450-r" } okio = { module = "com.squareup.okio:okio", version = "3.7.0" } From 8e342ab035068413b9e4d090d3698aad12af5fba Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 13 Feb 2024 18:43:21 +0000 Subject: [PATCH 25/44] Update jetty to v9.4.54.v20240208 --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 511a086a5..838d55f39 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,5 +1,5 @@ [versions] -jetty = "9.4.53.v20231009" +jetty = "9.4.54.v20240208" jersey = "2.41" jackson = "2.16.0" # When upgrading JaCoCo to a newer version make sure to From 482edf6a98bb260105d1501083840040d31c9ee5 Mon Sep 17 00:00:00 2001 From: Johannes Veihelmann Date: Wed, 14 Feb 2024 10:05:08 +0100 Subject: [PATCH 26/44] TS-36294 tiny rework --- .../teamscale/maven/tia/TiaCoverageConvertMojo.java | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/teamscale-maven-plugin/src/main/java/com/teamscale/maven/tia/TiaCoverageConvertMojo.java b/teamscale-maven-plugin/src/main/java/com/teamscale/maven/tia/TiaCoverageConvertMojo.java index e299205e9..294699b66 100644 --- a/teamscale-maven-plugin/src/main/java/com/teamscale/maven/tia/TiaCoverageConvertMojo.java +++ b/teamscale-maven-plugin/src/main/java/com/teamscale/maven/tia/TiaCoverageConvertMojo.java @@ -27,7 +27,6 @@ import java.io.File; import java.io.IOException; import java.nio.file.Files; -import java.nio.file.Path; import java.nio.file.Paths; import java.util.ArrayList; import java.util.List; @@ -81,21 +80,20 @@ public void execute() throws MojoFailureException { List reportFileDirectories = new ArrayList<>(); reportFileDirectories.add(Paths.get(projectBuildDir, "tia").toAbsolutePath().resolve("reports").toFile()); - List classfileDirectories; + List classFileDirectories; if (Strings.isNullOrEmpty(outputFolder)) { outputFolder = Paths.get(projectBuildDir, "tia", "reports").toString(); } - Path reportOutFolder = Paths.get(outputFolder); try { - Files.createDirectories(reportOutFolder); - classfileDirectories = getClassDirectoriesOrZips(projectBuildDir); - findSubprojectReportAndClassDirectories(reportFileDirectories, classfileDirectories); + Files.createDirectories(Paths.get(outputFolder)); + classFileDirectories = getClassDirectoriesOrZips(projectBuildDir); + findSubprojectReportAndClassDirectories(reportFileDirectories, classFileDirectories); } catch (IOException | AgentOptionParseException e) { logger.error("Could not create testwise report generator. Aborting."); throw new MojoFailureException(e); } logger.info("Generating the testwise coverage report"); - JaCoCoTestwiseReportGenerator generator = createJaCoCoTestwiseReportGenerator(classfileDirectories); + JaCoCoTestwiseReportGenerator generator = createJaCoCoTestwiseReportGenerator(classFileDirectories); TestInfoFactory testInfoFactory = createTestInfoFactory(reportFileDirectories); List jacocoExecutionDataList = ReportUtils.listFiles(ETestArtifactFormat.JACOCO, reportFileDirectories); String reportFilePath = Paths.get(outputFolder, "testwise-coverage.json").toString(); From 5914c72de70fb4e49a81dc1d4f373db9b1813b65 Mon Sep 17 00:00:00 2001 From: Johannes Veihelmann Date: Fri, 23 Feb 2024 17:33:59 +0100 Subject: [PATCH 27/44] TS-37747 add new option to provide a proxy password by file --- CHANGELOG.md | 1 + agent/README.md | 1 + .../com/teamscale/jacoco/agent/AgentBase.java | 20 +++++++++++++++++++ .../jacoco/agent/options/AgentOptions.java | 9 ++++++++- .../agent/options/AgentOptionsParser.java | 3 +++ 5 files changed, 33 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2817fc1c1..0ac50ddda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ We use [semantic versioning](http://semver.org/): - [feature] _teamscale-maven-plugin_: Add new execution goal to batch convert .exec files into testwise coverage report. - [feature] _agent_: Extended list of packages excluded by default - [maintenance] _agent_: Removed HTTP upload (i.e. `upload-url` option) +- [feature] _agent_: New option `proxy-password-file` allows users to provide a file containing a proxy password # 33.0.0 - [feature] add installer for system-wide installation (see agent/MIGRATION.md for a migration guide) diff --git a/agent/README.md b/agent/README.md index 4433a0376..e606960e0 100644 --- a/agent/README.md +++ b/agent/README.md @@ -61,6 +61,7 @@ The following options are available: Use this to change the logging behaviour of the agent. Some sample configurations are provided with the agent in the `logging` folder, e.g. to enable debug logging or log directly to the console. (For details see path format section below) +- `proxy-password-file` (optional): path to a file that contains the password for a proxy server authentication. This file may only contain the password and nothing else. - `mode` (optional): which coverage collection mode to use. Can be either `normal` or `testwise` (Default is `normal`) - `debug` (optional): `true`, `false` or a path to which the logs should be written to. `true` if no explicit value given. This option turns on debug mode. The logs will be written to console and the given file path. If no file path is given, diff --git a/agent/src/main/java/com/teamscale/jacoco/agent/AgentBase.java b/agent/src/main/java/com/teamscale/jacoco/agent/AgentBase.java index e3180898c..5678395ab 100644 --- a/agent/src/main/java/com/teamscale/jacoco/agent/AgentBase.java +++ b/agent/src/main/java/com/teamscale/jacoco/agent/AgentBase.java @@ -2,6 +2,7 @@ import com.teamscale.jacoco.agent.options.AgentOptions; import com.teamscale.jacoco.agent.util.LoggingUtils; +import org.conqat.lib.commons.filesystem.FileSystemUtils; import org.eclipse.jetty.server.Server; import org.eclipse.jetty.server.ServerConnector; import org.eclipse.jetty.servlet.ServletContextHandler; @@ -12,7 +13,9 @@ import org.jacoco.agent.rt.RT; import org.slf4j.Logger; +import java.io.IOException; import java.lang.management.ManagementFactory; +import java.nio.file.Path; /** * Base class for agent implementations. Handles logger shutdown, store creation and instantiation of the @@ -36,6 +39,7 @@ public abstract class AgentBase { /** Constructor. */ public AgentBase(AgentOptions options) throws IllegalStateException { this.options = options; + setProxyPasswordFromFile(options.getProxyPasswordPath()); try { controller = new JacocoRuntimeController(RT.getAgent()); } catch (IllegalStateException e) { @@ -55,6 +59,22 @@ public AgentBase(AgentOptions options) throws IllegalStateException { } } + /** Sets the proxy password JVM property from a file for both http and https. */ + private void setProxyPasswordFromFile(Path proxyPasswordFilePath) { + if (proxyPasswordFilePath == null) { + return; + } + try { + String proxyPassword = FileSystemUtils.readFileUTF8(proxyPasswordFilePath.toFile()).trim(); + System.setProperty("http.proxyPassword", proxyPassword); + System.setProperty("https.proxyPassword", proxyPassword); + } catch (IOException e) { + throw new RuntimeException( + "Unable to open file containing proxy password. Please make sure the file exists and the user has the permissions to read the file.", + e); + } + + } /** * Lazily generated string representation of the command line arguments to print to the log. */ diff --git a/agent/src/main/java/com/teamscale/jacoco/agent/options/AgentOptions.java b/agent/src/main/java/com/teamscale/jacoco/agent/options/AgentOptions.java index f343f4a4a..d95145c4f 100644 --- a/agent/src/main/java/com/teamscale/jacoco/agent/options/AgentOptions.java +++ b/agent/src/main/java/com/teamscale/jacoco/agent/options/AgentOptions.java @@ -108,7 +108,10 @@ public class AgentOptions { * The directory to write the XML traces to. */ private Path outputDirectory; - + /** + * A path to the file that contains the password for the proxy authentication. + */ + /* package */ Path proxyPasswordPath; /** * Additional meta data files to upload together with the coverage XML. */ @@ -226,6 +229,10 @@ public String getOriginalOptionsString() { return originalOptionsString; } + public Path getProxyPasswordPath() { + return proxyPasswordPath; + } + /** * Remove parts of the API key for security reasons from the options string. String is used for logging purposes. *

diff --git a/agent/src/main/java/com/teamscale/jacoco/agent/options/AgentOptionsParser.java b/agent/src/main/java/com/teamscale/jacoco/agent/options/AgentOptionsParser.java index 98ff9d939..d16bdac3a 100644 --- a/agent/src/main/java/com/teamscale/jacoco/agent/options/AgentOptionsParser.java +++ b/agent/src/main/java/com/teamscale/jacoco/agent/options/AgentOptionsParser.java @@ -193,6 +193,9 @@ private boolean handleAgentOptions(AgentOptions options, String key, String valu case LOGGING_CONFIG_OPTION: options.loggingConfig = filePatternResolver.parsePath(key, value); return true; + case "proxy-password-file": + options.proxyPasswordPath = filePatternResolver.parsePath(key, value); + return true; case "interval": options.dumpIntervalInMinutes = parseInt(key, value); return true; From c2e7731bc885508642f39c46a9f764ba16c3d8e4 Mon Sep 17 00:00:00 2001 From: Johannes Veihelmann Date: Fri, 23 Feb 2024 18:17:00 +0100 Subject: [PATCH 28/44] TS-37747 replace exception with logg error --- agent/src/main/java/com/teamscale/jacoco/agent/AgentBase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/src/main/java/com/teamscale/jacoco/agent/AgentBase.java b/agent/src/main/java/com/teamscale/jacoco/agent/AgentBase.java index 5678395ab..7e39fa03f 100644 --- a/agent/src/main/java/com/teamscale/jacoco/agent/AgentBase.java +++ b/agent/src/main/java/com/teamscale/jacoco/agent/AgentBase.java @@ -69,7 +69,7 @@ private void setProxyPasswordFromFile(Path proxyPasswordFilePath) { System.setProperty("http.proxyPassword", proxyPassword); System.setProperty("https.proxyPassword", proxyPassword); } catch (IOException e) { - throw new RuntimeException( + logger.error( "Unable to open file containing proxy password. Please make sure the file exists and the user has the permissions to read the file.", e); } From 24d415e7bff430fbcfefb31324ef058faa674b24 Mon Sep 17 00:00:00 2001 From: Thomas Pettinger Date: Tue, 27 Feb 2024 13:31:38 +0100 Subject: [PATCH 29/44] TS-37747 Add proxy authentication header to OkHttp requests if the corresponding java system properties are set --- .../java/com/teamscale/client/HttpUtils.java | 47 +++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/teamscale-client/src/main/java/com/teamscale/client/HttpUtils.java b/teamscale-client/src/main/java/com/teamscale/client/HttpUtils.java index 407f72b01..4bb64ec18 100644 --- a/teamscale-client/src/main/java/com/teamscale/client/HttpUtils.java +++ b/teamscale-client/src/main/java/com/teamscale/client/HttpUtils.java @@ -1,5 +1,7 @@ package com.teamscale.client; +import okhttp3.Authenticator; +import okhttp3.Credentials; import okhttp3.Interceptor; import okhttp3.OkHttpClient; import okhttp3.Request; @@ -39,6 +41,12 @@ public class HttpUtils { */ public static final Duration DEFAULT_WRITE_TIMEOUT = Duration.ofSeconds(60); + private static final String HTTP_PROXY_USER_SYSTEM_PROPERTY = "http.proxyUser"; + private static final String HTTP_PROXY_PASSWORD_SYSTEM_PROPERTY = "http.proxyPassword"; + private static final String HTTPS_PROXY_USER_SYSTEM_PROPERTY = "https.proxyUser"; + private static final String HTTPS_PROXY_PASSWORD_SYSTEM_PROPERTY = "https.proxyPassword"; + private static final String PROXY_AUTHORIZATION_HTTP_HEADER = "Proxy-Authorization"; + /** Controls whether {@link OkHttpClient}s built with this class will validate SSL certificates. */ private static boolean shouldValidateSsl = true; @@ -66,6 +74,7 @@ public static Retrofit createRetrofit(Consumer retrofitBuilder OkHttpClient.Builder httpClientBuilder = new OkHttpClient.Builder(); setTimeouts(httpClientBuilder, readTimeout, writeTimeout); setUpSslValidation(httpClientBuilder); + setUpProxyAuthentication(httpClientBuilder); okHttpBuilderAction.accept(httpClientBuilder); Retrofit.Builder builder = new Retrofit.Builder().client(httpClientBuilder.build()); @@ -73,6 +82,44 @@ public static Retrofit createRetrofit(Consumer retrofitBuilder return builder.build(); } + /** + * Java and/or OkHttp do not pick up the {@value HTTP_PROXY_USER_SYSTEM_PROPERTY}, + * {@value HTTP_PROXY_PASSWORD_SYSTEM_PROPERTY} and {@value HTTPS_PROXY_USER_SYSTEM_PROPERTY}, + * {@value HTTPS_PROXY_PASSWORD_SYSTEM_PROPERTY} system properties automatically. We need to teach OkHttp to pick + * them up. + *

+ * Sources: https://memorynotfound.com/configure-http-proxy-settings-java/ + * & + * https://stackoverflow.com/a/35567936 + */ + private static void setUpProxyAuthentication(OkHttpClient.Builder httpClientBuilder) { + String httpUser = System.getProperty(HTTP_PROXY_USER_SYSTEM_PROPERTY); + String httpPassword = System.getProperty(HTTP_PROXY_PASSWORD_SYSTEM_PROPERTY); + String httpsUser = System.getProperty(HTTPS_PROXY_USER_SYSTEM_PROPERTY); + String httpsPassword = System.getProperty(HTTPS_PROXY_PASSWORD_SYSTEM_PROPERTY); + String username; + String password; + + if (!StringUtils.isEmpty(httpsUser) && !StringUtils.isEmpty(httpsPassword)) { + username = httpsUser; + password = httpsPassword; + } else if (!StringUtils.isEmpty(httpUser) && !StringUtils.isEmpty((httpPassword))) { + username = httpUser; + password = httpPassword; + } else { + return; + } + + Authenticator proxyAuthenticator = (route, response) -> { + String credential = Credentials.basic(username, password); + return response.request().newBuilder() + .header(PROXY_AUTHORIZATION_HTTP_HEADER, credential) + .build(); + }; + httpClientBuilder.proxyAuthenticator(proxyAuthenticator); + } + /** * Sets sensible defaults for the {@link OkHttpClient}. */ From edb4c706a1fb6071d3e783fa2a893f03fed612ff Mon Sep 17 00:00:00 2001 From: Thomas Pettinger Date: Tue, 27 Feb 2024 18:12:59 +0100 Subject: [PATCH 30/44] TS-37747 Extract manipulation of the Java proxy system properties to its own class --- .../com/teamscale/jacoco/agent/AgentBase.java | 6 +- .../java/com/teamscale/client/HttpUtils.java | 68 +++++---- .../client/ProxySystemProperties.java | 129 ++++++++++++++++++ 3 files changed, 174 insertions(+), 29 deletions(-) create mode 100644 teamscale-client/src/main/java/com/teamscale/client/ProxySystemProperties.java diff --git a/agent/src/main/java/com/teamscale/jacoco/agent/AgentBase.java b/agent/src/main/java/com/teamscale/jacoco/agent/AgentBase.java index 7e39fa03f..afe1cd3a8 100644 --- a/agent/src/main/java/com/teamscale/jacoco/agent/AgentBase.java +++ b/agent/src/main/java/com/teamscale/jacoco/agent/AgentBase.java @@ -1,5 +1,6 @@ package com.teamscale.jacoco.agent; +import com.teamscale.client.ProxySystemProperties; import com.teamscale.jacoco.agent.options.AgentOptions; import com.teamscale.jacoco.agent.util.LoggingUtils; import org.conqat.lib.commons.filesystem.FileSystemUtils; @@ -66,8 +67,8 @@ private void setProxyPasswordFromFile(Path proxyPasswordFilePath) { } try { String proxyPassword = FileSystemUtils.readFileUTF8(proxyPasswordFilePath.toFile()).trim(); - System.setProperty("http.proxyPassword", proxyPassword); - System.setProperty("https.proxyPassword", proxyPassword); + new ProxySystemProperties(ProxySystemProperties.Protocol.HTTP).setProxyPassword(proxyPassword); + new ProxySystemProperties(ProxySystemProperties.Protocol.HTTPS).setProxyPassword(proxyPassword); } catch (IOException e) { logger.error( "Unable to open file containing proxy password. Please make sure the file exists and the user has the permissions to read the file.", @@ -75,6 +76,7 @@ private void setProxyPasswordFromFile(Path proxyPasswordFilePath) { } } + /** * Lazily generated string representation of the command line arguments to print to the log. */ diff --git a/teamscale-client/src/main/java/com/teamscale/client/HttpUtils.java b/teamscale-client/src/main/java/com/teamscale/client/HttpUtils.java index 4bb64ec18..fa3f415a4 100644 --- a/teamscale-client/src/main/java/com/teamscale/client/HttpUtils.java +++ b/teamscale-client/src/main/java/com/teamscale/client/HttpUtils.java @@ -17,6 +17,8 @@ import javax.net.ssl.TrustManager; import javax.net.ssl.X509TrustManager; import java.io.IOException; +import java.net.InetSocketAddress; +import java.net.Proxy; import java.security.GeneralSecurityException; import java.security.SecureRandom; import java.security.cert.X509Certificate; @@ -41,11 +43,7 @@ public class HttpUtils { */ public static final Duration DEFAULT_WRITE_TIMEOUT = Duration.ofSeconds(60); - private static final String HTTP_PROXY_USER_SYSTEM_PROPERTY = "http.proxyUser"; - private static final String HTTP_PROXY_PASSWORD_SYSTEM_PROPERTY = "http.proxyPassword"; - private static final String HTTPS_PROXY_USER_SYSTEM_PROPERTY = "https.proxyUser"; - private static final String HTTPS_PROXY_PASSWORD_SYSTEM_PROPERTY = "https.proxyPassword"; - private static final String PROXY_AUTHORIZATION_HTTP_HEADER = "Proxy-Authorization"; + public static final String PROXY_AUTHORIZATION_HTTP_HEADER = "Proxy-Authorization"; /** Controls whether {@link OkHttpClient}s built with this class will validate SSL certificates. */ private static boolean shouldValidateSsl = true; @@ -74,7 +72,7 @@ public static Retrofit createRetrofit(Consumer retrofitBuilder OkHttpClient.Builder httpClientBuilder = new OkHttpClient.Builder(); setTimeouts(httpClientBuilder, readTimeout, writeTimeout); setUpSslValidation(httpClientBuilder); - setUpProxyAuthentication(httpClientBuilder); + setUpProxyServer(httpClientBuilder); okHttpBuilderAction.accept(httpClientBuilder); Retrofit.Builder builder = new Retrofit.Builder().client(httpClientBuilder.build()); @@ -83,36 +81,51 @@ public static Retrofit createRetrofit(Consumer retrofitBuilder } /** - * Java and/or OkHttp do not pick up the {@value HTTP_PROXY_USER_SYSTEM_PROPERTY}, - * {@value HTTP_PROXY_PASSWORD_SYSTEM_PROPERTY} and {@value HTTPS_PROXY_USER_SYSTEM_PROPERTY}, - * {@value HTTPS_PROXY_PASSWORD_SYSTEM_PROPERTY} system properties automatically. We need to teach OkHttp to pick - * them up. + * Java and/or OkHttp do not pick up the http.proxy* and https.proxy* system properties reliably. We need to teach + * OkHttp to always pick them up. *

* Sources: https://memorynotfound.com/configure-http-proxy-settings-java/ * & * https://stackoverflow.com/a/35567936 */ - private static void setUpProxyAuthentication(OkHttpClient.Builder httpClientBuilder) { - String httpUser = System.getProperty(HTTP_PROXY_USER_SYSTEM_PROPERTY); - String httpPassword = System.getProperty(HTTP_PROXY_PASSWORD_SYSTEM_PROPERTY); - String httpsUser = System.getProperty(HTTPS_PROXY_USER_SYSTEM_PROPERTY); - String httpsPassword = System.getProperty(HTTPS_PROXY_PASSWORD_SYSTEM_PROPERTY); - String username; - String password; - - if (!StringUtils.isEmpty(httpsUser) && !StringUtils.isEmpty(httpsPassword)) { - username = httpsUser; - password = httpsPassword; - } else if (!StringUtils.isEmpty(httpUser) && !StringUtils.isEmpty((httpPassword))) { - username = httpUser; - password = httpPassword; - } else { - return; + private static void setUpProxyServer(OkHttpClient.Builder httpClientBuilder) { + boolean setHttpsProxyWasSuccessful = setUpProxyServerForProtocol(ProxySystemProperties.Protocol.HTTPS, + httpClientBuilder); + if (!setHttpsProxyWasSuccessful) { + setUpProxyServerForProtocol(ProxySystemProperties.Protocol.HTTP, httpClientBuilder); } + } + + private static boolean setUpProxyServerForProtocol(ProxySystemProperties.Protocol protocol, + OkHttpClient.Builder httpClientBuilder) { + + ProxySystemProperties proxySystemProperties = new ProxySystemProperties(protocol); + String proxyHost = proxySystemProperties.getProxyHost(); + int proxyPort = proxySystemProperties.getProxyPort(); + String proxyUser = proxySystemProperties.getProxyUser(); + String proxyPassword = proxySystemProperties.getProxyPassword(); + if (proxySystemProperties.proxyServerIsSet()) { + setProxyServer(httpClientBuilder, proxyHost, proxyPort); + + if (proxySystemProperties.proxyAuthIsSet()) { + setProxyAuthenticator(httpClientBuilder, proxyUser, proxyPassword); + } + + return true; + } + return false; + + } + + private static void setProxyServer(OkHttpClient.Builder httpClientBuilder, String proxyHost, int proxyPort) { + httpClientBuilder.proxy(new Proxy(Proxy.Type.HTTP, new InetSocketAddress(proxyHost, proxyPort))); + } + + private static void setProxyAuthenticator(OkHttpClient.Builder httpClientBuilder, String user, String password) { Authenticator proxyAuthenticator = (route, response) -> { - String credential = Credentials.basic(username, password); + String credential = Credentials.basic(user, password); return response.request().newBuilder() .header(PROXY_AUTHORIZATION_HTTP_HEADER, credential) .build(); @@ -120,6 +133,7 @@ private static void setUpProxyAuthentication(OkHttpClient.Builder httpClientBuil httpClientBuilder.proxyAuthenticator(proxyAuthenticator); } + /** * Sets sensible defaults for the {@link OkHttpClient}. */ diff --git a/teamscale-client/src/main/java/com/teamscale/client/ProxySystemProperties.java b/teamscale-client/src/main/java/com/teamscale/client/ProxySystemProperties.java new file mode 100644 index 000000000..d325ac833 --- /dev/null +++ b/teamscale-client/src/main/java/com/teamscale/client/ProxySystemProperties.java @@ -0,0 +1,129 @@ +package com.teamscale.client; + +/** + * Reads and writes Java system properties values for + *

    + *
  • http.proxyHost
  • + *
  • http.proxyPort
  • + *
  • http.proxyUser
  • + *
  • http.proxyPassword
  • + *
+ * or the corresponding HTTPS counterpart (starting with https instead of http). + * These values set the proxy server and credentials that should be used later to reach Teamscale. + */ +public class ProxySystemProperties { + + private static final String PROXY_HOST_SYSTEM_PROPERTY = ".proxyHost"; + private static final String PROXY_PORT_SYSTEM_PROPERTY = ".proxyPort"; + private static final String PROXY_USER_SYSTEM_PROPERTY = ".proxyUser"; + private static final String PROXY_PASSWORD_SYSTEM_PROPERTY = ".proxyPassword"; + + private Protocol protocol; + + /** + * Indicates, whether the {@link ProxySystemProperties} should return values for the http.proxy* system properties + * or the https.proxy* ones + */ + public enum Protocol { + HTTP, + HTTPS; + + @Override + public String toString() { + return name().toLowerCase(); + } + } + + /** + * @param protocol Indicates, whether the {@link ProxySystemProperties} should return values for the http.proxy* + * system properties or the https.proxy* ones + */ + public ProxySystemProperties(Protocol protocol) { + this.protocol = protocol; + } + + /** + * Checks whether proxyHost and proxyPort are set + */ + public boolean proxyServerIsSet() { + return !StringUtils.isEmpty(getProxyHost()) && getProxyPort() > 0; + } + + /** + * Checks whether proxyUser and proxyPassword are set + */ + public boolean proxyAuthIsSet() { + return !StringUtils.isEmpty(getProxyUser()) && !StringUtils.isEmpty(getProxyPassword()); + } + + /** + * Read the http(s).proxyHost system variable + */ + public String getProxyHost() { + return System.getProperty(protocol + PROXY_HOST_SYSTEM_PROPERTY); + } + + /** + * Set the http(s).proxyHost system variable + */ + public void setProxyHost(String proxyHost) { + System.setProperty(protocol + PROXY_HOST_SYSTEM_PROPERTY, proxyHost); + } + + /** + * Read the http(s).proxyPort system variable + */ + public int getProxyPort() { + return parsePort(System.getProperty(protocol + PROXY_PORT_SYSTEM_PROPERTY)); + } + + /** + * Set the http(s).proxyPort system variable + */ + public void setProxyPort(int proxyPort) { + setProxyPort(proxyPort + ""); + } + + /** + * Set the http(s).proxyPort system variable + */ + public void setProxyPort(String proxyPort) { + System.setProperty(protocol + PROXY_PORT_SYSTEM_PROPERTY, proxyPort); + } + + /** + * Get the http(s).proxyUser system variable + */ + public String getProxyUser() { + return System.getProperty(protocol + PROXY_USER_SYSTEM_PROPERTY); + } + + /** + * Set the http(s).proxyUser system variable + */ + public void setProxyUser(String proxyUser) { + System.setProperty(protocol + PROXY_USER_SYSTEM_PROPERTY, proxyUser); + } + + /** + * Get the http(s).proxyPassword system variable + */ + public String getProxyPassword() { + return System.getProperty(protocol + PROXY_PASSWORD_SYSTEM_PROPERTY); + } + + /** + * Set the http(s).proxyPassword system variable + */ + public void setProxyPassword(String proxyPassword) { + System.setProperty(protocol + PROXY_PASSWORD_SYSTEM_PROPERTY, proxyPassword); + } + + private int parsePort(String portString) { + try { + return Integer.parseInt(portString); + } catch (NumberFormatException e) { + return -1; + } + } +} From f04b1b081ae157410efd7d1dccd967c09cd72d77 Mon Sep 17 00:00:00 2001 From: Thomas Pettinger Date: Tue, 27 Feb 2024 18:18:37 +0100 Subject: [PATCH 31/44] TS-37747 Add test for proxy authentication --- teamscale-client/build.gradle.kts | 27 +++---- .../client/TeamscaleServiceGeneratorTest.java | 70 +++++++++++++++++++ 2 files changed, 84 insertions(+), 13 deletions(-) create mode 100644 teamscale-client/src/test/java/com/teamscale/client/TeamscaleServiceGeneratorTest.java diff --git a/teamscale-client/build.gradle.kts b/teamscale-client/build.gradle.kts index ac8e381db..f0e2da8e7 100644 --- a/teamscale-client/build.gradle.kts +++ b/teamscale-client/build.gradle.kts @@ -1,21 +1,22 @@ plugins { - `java-library` - com.teamscale.`java-convention` - com.teamscale.coverage - com.teamscale.publish + `java-library` + com.teamscale.`java-convention` + com.teamscale.coverage + com.teamscale.publish } publishAs { - readableName.set("Teamscale Upload Client") - description.set( - "A tiny service client that only supports Teamscale's the external upload interface and impacted-tests service." - ) + readableName.set("Teamscale Upload Client") + description.set( + "A tiny service client that only supports Teamscale's the external upload interface and impacted-tests service." + ) } dependencies { - api(libs.retrofit.core) - implementation(libs.okhttp.core) - implementation(libs.commonsCodec) - implementation(libs.slf4j.api) - implementation(libs.retrofit.converter.jackson) + api(libs.retrofit.core) + implementation(libs.okhttp.core) + implementation(libs.commonsCodec) + implementation(libs.slf4j.api) + implementation(libs.retrofit.converter.jackson) + testImplementation(libs.okhttp.mockwebserver) } diff --git a/teamscale-client/src/test/java/com/teamscale/client/TeamscaleServiceGeneratorTest.java b/teamscale-client/src/test/java/com/teamscale/client/TeamscaleServiceGeneratorTest.java new file mode 100644 index 000000000..73f541c6a --- /dev/null +++ b/teamscale-client/src/test/java/com/teamscale/client/TeamscaleServiceGeneratorTest.java @@ -0,0 +1,70 @@ +package com.teamscale.client; + +import okhttp3.HttpUrl; +import okhttp3.mockwebserver.MockResponse; +import okhttp3.mockwebserver.MockWebServer; +import okhttp3.mockwebserver.RecordedRequest; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import java.io.IOException; +import java.nio.charset.StandardCharsets; +import java.util.Base64; + +import static com.teamscale.client.HttpUtils.PROXY_AUTHORIZATION_HTTP_HEADER; +import static org.assertj.core.api.Assertions.assertThat; + +class TeamscaleServiceGeneratorTest { + + MockWebServer mockProxyServer; + ProxySystemProperties proxySystemProperties = new ProxySystemProperties(ProxySystemProperties.Protocol.HTTP); + + @BeforeEach + void setUp() throws IOException { + mockProxyServer = new MockWebServer(); + mockProxyServer.start(); + } + + @Test + void testProxyAuthentication() throws IOException, InterruptedException { + String proxyUser = "myProxyUser"; + String proxyPassword = "myProxyPassword"; + String base64EncodedBasicAuth = Base64.getEncoder().encodeToString((proxyUser + ":" + proxyPassword).getBytes( + StandardCharsets.UTF_8)); + proxySystemProperties.setProxyHost(mockProxyServer.getHostName()); + proxySystemProperties.setProxyPort(mockProxyServer.getPort()); + proxySystemProperties.setProxyUser(proxyUser); + proxySystemProperties.setProxyPassword(proxyPassword); + + ITeamscaleService service = TeamscaleServiceGenerator.createService(ITeamscaleService.class, + HttpUrl.parse("http://localhost:1337"), + "someUser", "someAccesstoken", HttpUtils.DEFAULT_READ_TIMEOUT, + HttpUtils.DEFAULT_WRITE_TIMEOUT); + + // First time Retrofit/OkHttp tires without proxy auth. + // When we return 407 Proxy Authentication Required, it retries with proxy authentication. + mockProxyServer.enqueue(new MockResponse().setResponseCode(407)); + mockProxyServer.enqueue(new MockResponse().setResponseCode(200)); + service.sendHeartbeat("", new ProfilerInfo(new ProcessInformation("", "", 0), null)).execute(); + + assertThat(mockProxyServer.getRequestCount()).isEqualTo(2); + + mockProxyServer.takeRequest(); // First request which doesn't have the proxy authentication set yet + RecordedRequest requestWithProxyAuth = mockProxyServer.takeRequest();// Request we are actually interested in + + assertThat(requestWithProxyAuth.getHeader(PROXY_AUTHORIZATION_HTTP_HEADER)).isEqualTo( + "Basic " + base64EncodedBasicAuth); + } + + @AfterEach + void tearDown() throws IOException { + proxySystemProperties.setProxyHost(""); + proxySystemProperties.setProxyPort(""); + proxySystemProperties.setProxyUser(""); + proxySystemProperties.setProxyPassword(""); + + mockProxyServer.shutdown(); + mockProxyServer.close(); + } +} \ No newline at end of file From 7f64b2d8c0fee15ccbf1285525d4186a55d42911 Mon Sep 17 00:00:00 2001 From: Thomas Pettinger Date: Tue, 27 Feb 2024 18:20:52 +0100 Subject: [PATCH 32/44] TS-37747 Resolve Teamscale findings --- .../src/main/java/com/teamscale/client/HttpUtils.java | 3 +++ .../com/teamscale/client/TeamscaleServiceGeneratorTest.java | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/teamscale-client/src/main/java/com/teamscale/client/HttpUtils.java b/teamscale-client/src/main/java/com/teamscale/client/HttpUtils.java index fa3f415a4..bfe45439f 100644 --- a/teamscale-client/src/main/java/com/teamscale/client/HttpUtils.java +++ b/teamscale-client/src/main/java/com/teamscale/client/HttpUtils.java @@ -43,6 +43,9 @@ public class HttpUtils { */ public static final Duration DEFAULT_WRITE_TIMEOUT = Duration.ofSeconds(60); + /** + * HTTP header used for authenticating against a proxy server + */ public static final String PROXY_AUTHORIZATION_HTTP_HEADER = "Proxy-Authorization"; /** Controls whether {@link OkHttpClient}s built with this class will validate SSL certificates. */ diff --git a/teamscale-client/src/test/java/com/teamscale/client/TeamscaleServiceGeneratorTest.java b/teamscale-client/src/test/java/com/teamscale/client/TeamscaleServiceGeneratorTest.java index 73f541c6a..c172cc822 100644 --- a/teamscale-client/src/test/java/com/teamscale/client/TeamscaleServiceGeneratorTest.java +++ b/teamscale-client/src/test/java/com/teamscale/client/TeamscaleServiceGeneratorTest.java @@ -17,8 +17,9 @@ class TeamscaleServiceGeneratorTest { - MockWebServer mockProxyServer; - ProxySystemProperties proxySystemProperties = new ProxySystemProperties(ProxySystemProperties.Protocol.HTTP); + private MockWebServer mockProxyServer; + private final ProxySystemProperties proxySystemProperties = new ProxySystemProperties( + ProxySystemProperties.Protocol.HTTP); @BeforeEach void setUp() throws IOException { From 33a73004115383950cc15b6713dfc4c9c5aaafc5 Mon Sep 17 00:00:00 2001 From: Thomas Pettinger Date: Wed, 28 Feb 2024 11:05:20 +0100 Subject: [PATCH 33/44] TS-37747 Consolidate service creation in TeamscaleServiceGenerator --- .../client/TeamscaleServiceGenerator.java | 27 +++++++++---------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/teamscale-client/src/main/java/com/teamscale/client/TeamscaleServiceGenerator.java b/teamscale-client/src/main/java/com/teamscale/client/TeamscaleServiceGenerator.java index 79778536b..5e7a7f14f 100644 --- a/teamscale-client/src/main/java/com/teamscale/client/TeamscaleServiceGenerator.java +++ b/teamscale-client/src/main/java/com/teamscale/client/TeamscaleServiceGenerator.java @@ -24,16 +24,9 @@ public class TeamscaleServiceGenerator { */ public static S createService(Class serviceClass, HttpUrl baseUrl, String username, String accessToken, Duration readTimeout, Duration writeTimeout, Interceptor... interceptors) { - Retrofit retrofit = HttpUtils.createRetrofit( - retrofitBuilder -> retrofitBuilder.baseUrl(baseUrl) - .addConverterFactory(JacksonConverterFactory.create(JsonUtils.OBJECT_MAPPER)), - okHttpBuilder -> addInterceptors(okHttpBuilder, interceptors) - .addInterceptor(HttpUtils.getBasicAuthInterceptor(username, accessToken)) - .addInterceptor(new AcceptJsonInterceptor()) - .addNetworkInterceptor(new CustomUserAgentInterceptor()) - , readTimeout, writeTimeout - ); - return retrofit.create(serviceClass); + return createServiceWithRequestLogging(serviceClass, baseUrl, username, accessToken, null, readTimeout, + writeTimeout, + interceptors); } /** @@ -46,11 +39,15 @@ public static S createServiceWithRequestLogging(Class serviceClass, HttpU Retrofit retrofit = HttpUtils.createRetrofit( retrofitBuilder -> retrofitBuilder.baseUrl(baseUrl) .addConverterFactory(JacksonConverterFactory.create(JsonUtils.OBJECT_MAPPER)), - okHttpBuilder -> addInterceptors(okHttpBuilder, interceptors) - .addInterceptor(HttpUtils.getBasicAuthInterceptor(username, accessToken)) - .addInterceptor(new AcceptJsonInterceptor()) - .addNetworkInterceptor(new CustomUserAgentInterceptor()) - .addInterceptor(new FileLoggingInterceptor(logfile)), + okHttpBuilder -> { + addInterceptors(okHttpBuilder, interceptors) + .addInterceptor(HttpUtils.getBasicAuthInterceptor(username, accessToken)) + .addInterceptor(new AcceptJsonInterceptor()) + .addNetworkInterceptor(new CustomUserAgentInterceptor()); + if (logfile != null) { + okHttpBuilder.addInterceptor(new FileLoggingInterceptor(logfile)); + } + }, readTimeout, writeTimeout ); return retrofit.create(serviceClass); From 419af4330f189c52a791827a5558d2cc7bdbd50f Mon Sep 17 00:00:00 2001 From: Thomas Pettinger Date: Wed, 28 Feb 2024 11:05:29 +0100 Subject: [PATCH 34/44] TS-37747 Rework --- .../java/com/teamscale/client/HttpUtils.java | 8 +-- .../client/ProxySystemProperties.java | 53 ++++++++++++++----- ...scaleServiceGeneratorProxyServerTest.java} | 5 +- 3 files changed, 49 insertions(+), 17 deletions(-) rename teamscale-client/src/test/java/com/teamscale/client/{TeamscaleServiceGeneratorTest.java => TeamscaleServiceGeneratorProxyServerTest.java} (94%) diff --git a/teamscale-client/src/main/java/com/teamscale/client/HttpUtils.java b/teamscale-client/src/main/java/com/teamscale/client/HttpUtils.java index bfe45439f..fbe0f1a50 100644 --- a/teamscale-client/src/main/java/com/teamscale/client/HttpUtils.java +++ b/teamscale-client/src/main/java/com/teamscale/client/HttpUtils.java @@ -110,10 +110,10 @@ private static boolean setUpProxyServerForProtocol(ProxySystemProperties.Protoco String proxyPassword = proxySystemProperties.getProxyPassword(); if (proxySystemProperties.proxyServerIsSet()) { - setProxyServer(httpClientBuilder, proxyHost, proxyPort); + useProxyServer(httpClientBuilder, proxyHost, proxyPort); if (proxySystemProperties.proxyAuthIsSet()) { - setProxyAuthenticator(httpClientBuilder, proxyUser, proxyPassword); + useProxyAuthenticator(httpClientBuilder, proxyUser, proxyPassword); } return true; @@ -122,11 +122,11 @@ private static boolean setUpProxyServerForProtocol(ProxySystemProperties.Protoco } - private static void setProxyServer(OkHttpClient.Builder httpClientBuilder, String proxyHost, int proxyPort) { + private static void useProxyServer(OkHttpClient.Builder httpClientBuilder, String proxyHost, int proxyPort) { httpClientBuilder.proxy(new Proxy(Proxy.Type.HTTP, new InetSocketAddress(proxyHost, proxyPort))); } - private static void setProxyAuthenticator(OkHttpClient.Builder httpClientBuilder, String user, String password) { + private static void useProxyAuthenticator(OkHttpClient.Builder httpClientBuilder, String user, String password) { Authenticator proxyAuthenticator = (route, response) -> { String credential = Credentials.basic(user, password); return response.request().newBuilder() diff --git a/teamscale-client/src/main/java/com/teamscale/client/ProxySystemProperties.java b/teamscale-client/src/main/java/com/teamscale/client/ProxySystemProperties.java index d325ac833..e7686d16f 100644 --- a/teamscale-client/src/main/java/com/teamscale/client/ProxySystemProperties.java +++ b/teamscale-client/src/main/java/com/teamscale/client/ProxySystemProperties.java @@ -1,5 +1,9 @@ package com.teamscale.client; +import org.jetbrains.annotations.NotNull; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + /** * Reads and writes Java system properties values for *
    @@ -13,6 +17,8 @@ */ public class ProxySystemProperties { + private static final Logger LOGGER = LoggerFactory.getLogger(ProxySystemProperties.class); + private static final String PROXY_HOST_SYSTEM_PROPERTY = ".proxyHost"; private static final String PROXY_PORT_SYSTEM_PROPERTY = ".proxyPort"; private static final String PROXY_USER_SYSTEM_PROPERTY = ".proxyUser"; @@ -60,21 +66,26 @@ public boolean proxyAuthIsSet() { * Read the http(s).proxyHost system variable */ public String getProxyHost() { - return System.getProperty(protocol + PROXY_HOST_SYSTEM_PROPERTY); + return System.getProperty(getProxyHostSystemPropertyName()); } /** - * Set the http(s).proxyHost system variable + * Read the http(s).proxyPort system variable */ - public void setProxyHost(String proxyHost) { - System.setProperty(protocol + PROXY_HOST_SYSTEM_PROPERTY, proxyHost); + public int getProxyPort() { + return parsePort(System.getProperty(getProxyPortSystemPropertyName())); } /** - * Read the http(s).proxyPort system variable + * Set the http(s).proxyHost system variable */ - public int getProxyPort() { - return parsePort(System.getProperty(protocol + PROXY_PORT_SYSTEM_PROPERTY)); + public void setProxyHost(String proxyHost) { + System.setProperty(getProxyHostSystemPropertyName(), proxyHost); + } + + @NotNull + private String getProxyHostSystemPropertyName() { + return protocol + PROXY_HOST_SYSTEM_PROPERTY; } /** @@ -88,41 +99,59 @@ public void setProxyPort(int proxyPort) { * Set the http(s).proxyPort system variable */ public void setProxyPort(String proxyPort) { - System.setProperty(protocol + PROXY_PORT_SYSTEM_PROPERTY, proxyPort); + System.setProperty(getProxyPortSystemPropertyName(), proxyPort); + } + + @NotNull + private String getProxyPortSystemPropertyName() { + return protocol + PROXY_PORT_SYSTEM_PROPERTY; } /** * Get the http(s).proxyUser system variable */ public String getProxyUser() { - return System.getProperty(protocol + PROXY_USER_SYSTEM_PROPERTY); + return System.getProperty(getProxyUserSystemPropertyName()); } /** * Set the http(s).proxyUser system variable */ public void setProxyUser(String proxyUser) { - System.setProperty(protocol + PROXY_USER_SYSTEM_PROPERTY, proxyUser); + System.setProperty(getProxyUserSystemPropertyName(), proxyUser); + } + + @NotNull + private String getProxyUserSystemPropertyName() { + return protocol + PROXY_USER_SYSTEM_PROPERTY; } /** * Get the http(s).proxyPassword system variable */ public String getProxyPassword() { - return System.getProperty(protocol + PROXY_PASSWORD_SYSTEM_PROPERTY); + return System.getProperty(getProxyPasswordSystemPropertyName()); } + /** * Set the http(s).proxyPassword system variable */ public void setProxyPassword(String proxyPassword) { - System.setProperty(protocol + PROXY_PASSWORD_SYSTEM_PROPERTY, proxyPassword); + System.setProperty(getProxyPasswordSystemPropertyName(), proxyPassword); + } + + @NotNull + private String getProxyPasswordSystemPropertyName() { + return protocol + PROXY_PASSWORD_SYSTEM_PROPERTY; } private int parsePort(String portString) { try { return Integer.parseInt(portString); } catch (NumberFormatException e) { + LOGGER.warn("Could not parse proxy port \"" + portString + + "\" set via \"" + getProxyPortSystemPropertyName() + "\""); return -1; } } diff --git a/teamscale-client/src/test/java/com/teamscale/client/TeamscaleServiceGeneratorTest.java b/teamscale-client/src/test/java/com/teamscale/client/TeamscaleServiceGeneratorProxyServerTest.java similarity index 94% rename from teamscale-client/src/test/java/com/teamscale/client/TeamscaleServiceGeneratorTest.java rename to teamscale-client/src/test/java/com/teamscale/client/TeamscaleServiceGeneratorProxyServerTest.java index c172cc822..07024df05 100644 --- a/teamscale-client/src/test/java/com/teamscale/client/TeamscaleServiceGeneratorTest.java +++ b/teamscale-client/src/test/java/com/teamscale/client/TeamscaleServiceGeneratorProxyServerTest.java @@ -15,7 +15,10 @@ import static com.teamscale.client.HttpUtils.PROXY_AUTHORIZATION_HTTP_HEADER; import static org.assertj.core.api.Assertions.assertThat; -class TeamscaleServiceGeneratorTest { +/** + * Tests that our Retrofit + OkHttp client is using the Java proxy system properties ({@code http.proxy*}) if set + */ +class TeamscaleServiceGeneratorProxyServerTest { private MockWebServer mockProxyServer; private final ProxySystemProperties proxySystemProperties = new ProxySystemProperties( From 4c8013503fe065b43b380627cd38ad817f554954 Mon Sep 17 00:00:00 2001 From: Thomas Pettinger Date: Wed, 28 Feb 2024 11:06:47 +0100 Subject: [PATCH 35/44] TS-37747 Fix IDE warnings --- .../main/java/com/teamscale/client/ProxySystemProperties.java | 2 +- .../java/com/teamscale/client/TeamscaleServiceGenerator.java | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/teamscale-client/src/main/java/com/teamscale/client/ProxySystemProperties.java b/teamscale-client/src/main/java/com/teamscale/client/ProxySystemProperties.java index e7686d16f..f56a80dd8 100644 --- a/teamscale-client/src/main/java/com/teamscale/client/ProxySystemProperties.java +++ b/teamscale-client/src/main/java/com/teamscale/client/ProxySystemProperties.java @@ -24,7 +24,7 @@ public class ProxySystemProperties { private static final String PROXY_USER_SYSTEM_PROPERTY = ".proxyUser"; private static final String PROXY_PASSWORD_SYSTEM_PROPERTY = ".proxyPassword"; - private Protocol protocol; + private final Protocol protocol; /** * Indicates, whether the {@link ProxySystemProperties} should return values for the http.proxy* system properties diff --git a/teamscale-client/src/main/java/com/teamscale/client/TeamscaleServiceGenerator.java b/teamscale-client/src/main/java/com/teamscale/client/TeamscaleServiceGenerator.java index 5e7a7f14f..4da346738 100644 --- a/teamscale-client/src/main/java/com/teamscale/client/TeamscaleServiceGenerator.java +++ b/teamscale-client/src/main/java/com/teamscale/client/TeamscaleServiceGenerator.java @@ -5,6 +5,7 @@ import okhttp3.OkHttpClient; import okhttp3.Request; import okhttp3.Response; +import org.jetbrains.annotations.NotNull; import retrofit2.Retrofit; import retrofit2.converter.jackson.JacksonConverterFactory; @@ -66,6 +67,7 @@ private static OkHttpClient.Builder addInterceptors(OkHttpClient.Builder builder */ private static class AcceptJsonInterceptor implements Interceptor { + @NotNull @Override public Response intercept(Chain chain) throws IOException { Request newRequest = chain.request().newBuilder().header("Accept", "application/json").build(); @@ -77,6 +79,7 @@ public Response intercept(Chain chain) throws IOException { * Sets the custom user agent {@link #USER_AGENT} header on all requests. */ public static class CustomUserAgentInterceptor implements Interceptor { + @NotNull @Override public Response intercept(Chain chain) throws IOException { Request newRequest = chain.request().newBuilder().header("User-Agent", USER_AGENT).build(); From 0214fa542f8485ee01ece8f4941b90c271bbf9b0 Mon Sep 17 00:00:00 2001 From: Thomas Pettinger Date: Wed, 28 Feb 2024 11:12:13 +0100 Subject: [PATCH 36/44] TS-37747 Better wording in the JavaDoc for ProxySystemProperties --- .../main/java/com/teamscale/client/ProxySystemProperties.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teamscale-client/src/main/java/com/teamscale/client/ProxySystemProperties.java b/teamscale-client/src/main/java/com/teamscale/client/ProxySystemProperties.java index f56a80dd8..403971c23 100644 --- a/teamscale-client/src/main/java/com/teamscale/client/ProxySystemProperties.java +++ b/teamscale-client/src/main/java/com/teamscale/client/ProxySystemProperties.java @@ -41,8 +41,8 @@ public String toString() { } /** - * @param protocol Indicates, whether the {@link ProxySystemProperties} should return values for the http.proxy* - * system properties or the https.proxy* ones + * @param protocol Indicates, whether the {@link ProxySystemProperties} should use values for the http.proxy* system + * properties or the https.proxy* ones */ public ProxySystemProperties(Protocol protocol) { this.protocol = protocol; From 63da932db7e0c9e5a46134bec6706e00260d0ca8 Mon Sep 17 00:00:00 2001 From: Thomas Pettinger Date: Wed, 28 Feb 2024 14:48:17 +0100 Subject: [PATCH 37/44] Release 33.1.0 --- CHANGELOG.md | 2 ++ build.gradle.kts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ac50ddda..510d1482a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ We use [semantic versioning](http://semver.org/): - PATCH version when you make backwards compatible bug fixes. # Next Release + +# 33.1.0 - [feature] _teamscale-maven-plugin_: Add new execution goal to batch convert .exec files into testwise coverage report. - [feature] _agent_: Extended list of packages excluded by default - [maintenance] _agent_: Removed HTTP upload (i.e. `upload-url` option) diff --git a/build.gradle.kts b/build.gradle.kts index f797f08aa..d9486b029 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,7 +5,7 @@ plugins { group = "com.teamscale" -val appVersion by extra("33.0.0") +val appVersion by extra("33.1.0") val snapshotVersion = appVersion + if (VersionUtils.isTaggedRelease()) "" else "-SNAPSHOT" From 4689f7e1868843204dbdaa53198e2d030a7d397f Mon Sep 17 00:00:00 2001 From: Andreas Stahlbauer Date: Thu, 7 Mar 2024 14:25:04 +0100 Subject: [PATCH 38/44] TS-37922 Handling for null pointer cases added. --- .../main/java/com/teamscale/jacoco/agent/Agent.java | 11 +++++++++-- .../java/com/teamscale/client/FileSystemUtils.java | 10 +++++++++- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/agent/src/main/java/com/teamscale/jacoco/agent/Agent.java b/agent/src/main/java/com/teamscale/jacoco/agent/Agent.java index 36bea2bf6..bd8baf51c 100644 --- a/agent/src/main/java/com/teamscale/jacoco/agent/Agent.java +++ b/agent/src/main/java/com/teamscale/jacoco/agent/Agent.java @@ -19,11 +19,11 @@ import java.util.List; import java.util.Properties; -import org.conqat.lib.commons.filesystem.FileSystemUtils; import org.conqat.lib.commons.string.StringUtils; import org.glassfish.jersey.server.ResourceConfig; import org.glassfish.jersey.server.ServerProperties; +import com.teamscale.client.FileSystemUtils; import com.teamscale.jacoco.agent.options.AgentOptions; import com.teamscale.jacoco.agent.upload.IUploadRetry; import com.teamscale.jacoco.agent.upload.IUploader; @@ -84,7 +84,14 @@ private void retryUnsuccessfulUploads(AgentOptions options, IUploader uploader) // Default fallback outputPath = AgentUtils.getAgentDirectory().resolve("coverage"); } - List reuploadCandidates = FileSystemUtils.listFilesRecursively(outputPath.getParent().toFile(), + + Path parentPath = outputPath.getParent(); + if (parentPath == null) { + logger.error("The output path '{}' does not have a parent path. Canceling upload retry.", outputPath.toAbsolutePath()); + return; + } + + List reuploadCandidates = FileSystemUtils.listFilesRecursively(parentPath.toFile(), filepath -> filepath.getName().endsWith(RETRY_UPLOAD_FILE_SUFFIX)); for (File file : reuploadCandidates) { reuploadCoverageFromPropertiesFile(file, uploader); diff --git a/teamscale-client/src/main/java/com/teamscale/client/FileSystemUtils.java b/teamscale-client/src/main/java/com/teamscale/client/FileSystemUtils.java index 51c569fcc..f9748f5d1 100644 --- a/teamscale-client/src/main/java/com/teamscale/client/FileSystemUtils.java +++ b/teamscale-client/src/main/java/com/teamscale/client/FileSystemUtils.java @@ -86,7 +86,15 @@ public static String getFileExtension(File file) { * files and directories are included. */ private static void listFilesRecursively(File directory, Collection result, FileFilter filter) { - for (File file : directory.listFiles()) { + File[] files = directory.listFiles(); + if (files == null) { + // From the docs of `listFiles`: + // "If this abstract pathname does not denote a directory, then this method returns null." + // Based on this, it seems to be ok to just return here without throwing an exception. + return; + } + + for (File file : files) { if (file.isDirectory()) { listFilesRecursively(file, result, filter); } From 01c800d09869ef0a3fa517ef98d2f9e4fa18b836 Mon Sep 17 00:00:00 2001 From: Andreas Stahlbauer Date: Fri, 8 Mar 2024 13:45:50 +0100 Subject: [PATCH 39/44] TS-37922 Code clone to avoid shadowing issues. --- .../com/teamscale/jacoco/agent/Agent.java | 4 +- .../agent/util/FileSystemUtilsClone.java | 51 +++++++++++++++++++ 2 files changed, 53 insertions(+), 2 deletions(-) create mode 100644 agent/src/main/java/com/teamscale/jacoco/agent/util/FileSystemUtilsClone.java diff --git a/agent/src/main/java/com/teamscale/jacoco/agent/Agent.java b/agent/src/main/java/com/teamscale/jacoco/agent/Agent.java index bd8baf51c..c738b2147 100644 --- a/agent/src/main/java/com/teamscale/jacoco/agent/Agent.java +++ b/agent/src/main/java/com/teamscale/jacoco/agent/Agent.java @@ -19,11 +19,11 @@ import java.util.List; import java.util.Properties; +import com.teamscale.jacoco.agent.util.FileSystemUtilsClone; import org.conqat.lib.commons.string.StringUtils; import org.glassfish.jersey.server.ResourceConfig; import org.glassfish.jersey.server.ServerProperties; -import com.teamscale.client.FileSystemUtils; import com.teamscale.jacoco.agent.options.AgentOptions; import com.teamscale.jacoco.agent.upload.IUploadRetry; import com.teamscale.jacoco.agent.upload.IUploader; @@ -91,7 +91,7 @@ private void retryUnsuccessfulUploads(AgentOptions options, IUploader uploader) return; } - List reuploadCandidates = FileSystemUtils.listFilesRecursively(parentPath.toFile(), + List reuploadCandidates = FileSystemUtilsClone.listFilesRecursively(parentPath.toFile(), filepath -> filepath.getName().endsWith(RETRY_UPLOAD_FILE_SUFFIX)); for (File file : reuploadCandidates) { reuploadCoverageFromPropertiesFile(file, uploader); diff --git a/agent/src/main/java/com/teamscale/jacoco/agent/util/FileSystemUtilsClone.java b/agent/src/main/java/com/teamscale/jacoco/agent/util/FileSystemUtilsClone.java new file mode 100644 index 000000000..a47f0fede --- /dev/null +++ b/agent/src/main/java/com/teamscale/jacoco/agent/util/FileSystemUtilsClone.java @@ -0,0 +1,51 @@ +package com.teamscale.jacoco.agent.util; + +import java.io.File; +import java.io.FileFilter; +import java.util.ArrayList; +import java.util.Collection; +import java.util.Collections; +import java.util.List; + +/** + * Clone of the file system utilities. + *

    + * This shall be removed with TS-37964. + */ +public class FileSystemUtilsClone { + + /** + * Clone of {@link com.teamscale.client.FileSystemUtils#listFilesRecursively(File, FileFilter)} + */ + public static List listFilesRecursively(File directory, FileFilter filter) { + if (directory == null || !directory.isDirectory()) { + return Collections.emptyList(); + } + List result = new ArrayList<>(); + listFilesRecursively(directory, result, filter); + return result; + } + + /** + * Clone of {@link com.teamscale.client.FileSystemUtils#listFilesRecursively(File, Collection, FileFilter)} + */ + private static void listFilesRecursively(File directory, Collection result, FileFilter filter) { + File[] files = directory.listFiles(); + if (files == null) { + // From the docs of `listFiles`: + // "If this abstract pathname does not denote a directory, then this method returns null." + // Based on this, it seems to be ok to just return here without throwing an exception. + return; + } + + for (File file : files) { + if (file.isDirectory()) { + listFilesRecursively(file, result, filter); + } + if (filter == null || filter.accept(file)) { + result.add(file); + } + } + } + +} \ No newline at end of file From 3267407a674e0e232184022e9e625c645d1e6cc6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 8 Mar 2024 16:05:19 +0000 Subject: [PATCH 40/44] Update dependency org.eclipse.jgit:org.eclipse.jgit to v6.9.0.202403050737-r --- gradle/libs.versions.toml | 2 +- teamscale-maven-plugin/pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 838d55f39..2cd209aa9 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -51,7 +51,7 @@ jcommander = { module = "com.beust:jcommander", version = "1.82" } teamscaleLibCommons = { module = "com.teamscale:teamscale-lib-commons", version = "9.4.1" } commonsCodec = { module = "commons-codec:commons-codec", version = "1.16.1" } slf4j-api = { module = "org.slf4j:slf4j-api", version = "2.0.12" } -jgit = { module = "org.eclipse.jgit:org.eclipse.jgit", version = "6.8.0.202311291450-r" } +jgit = { module = "org.eclipse.jgit:org.eclipse.jgit", version = "6.9.0.202403050737-r" } okio = { module = "com.squareup.okio:okio", version = "3.8.0" } picocli-core = { module = "info.picocli:picocli", version.ref = "picocli" } diff --git a/teamscale-maven-plugin/pom.xml b/teamscale-maven-plugin/pom.xml index bebf568da..d264d5f80 100644 --- a/teamscale-maven-plugin/pom.xml +++ b/teamscale-maven-plugin/pom.xml @@ -94,7 +94,7 @@ org.eclipse.jgit org.eclipse.jgit - 6.8.0.202311291450-r + 6.9.0.202403050737-r com.teamscale From 8ed732b29f733086ab091724c365563890d7d002 Mon Sep 17 00:00:00 2001 From: Florian Dreier Date: Fri, 8 Mar 2024 17:07:05 +0100 Subject: [PATCH 41/44] Publish 33.1.1 --- CHANGELOG.md | 3 +++ build.gradle.kts | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 510d1482a..fc3ffd331 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ We use [semantic versioning](http://semver.org/): # Next Release +# 33.1.1 +- [fix] _agent_: NPE during agent startup probably due to missing read permissions in a shared folder + # 33.1.0 - [feature] _teamscale-maven-plugin_: Add new execution goal to batch convert .exec files into testwise coverage report. - [feature] _agent_: Extended list of packages excluded by default diff --git a/build.gradle.kts b/build.gradle.kts index d9486b029..15e60139b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,7 +5,7 @@ plugins { group = "com.teamscale" -val appVersion by extra("33.1.0") +val appVersion by extra("33.1.1") val snapshotVersion = appVersion + if (VersionUtils.isTaggedRelease()) "" else "-SNAPSHOT" From 4ad01397212a99722689b34ed24768ab8b9a47a3 Mon Sep 17 00:00:00 2001 From: Johannes Veihelmann Date: Mon, 11 Mar 2024 08:55:14 +0100 Subject: [PATCH 42/44] TS-37972 add properties to end commit and revision --- CHANGELOG.md | 1 + .../src/main/java/com/teamscale/maven/TeamscaleMojoBase.java | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc3ffd331..01ca16680 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ We use [semantic versioning](http://semver.org/): - PATCH version when you make backwards compatible bug fixes. # Next Release +- [fix] _teamscale-maven-plugin_: Revision and end commit could not be set via command line (user property) # 33.1.1 - [fix] _agent_: NPE during agent startup probably due to missing read permissions in a shared folder diff --git a/teamscale-maven-plugin/src/main/java/com/teamscale/maven/TeamscaleMojoBase.java b/teamscale-maven-plugin/src/main/java/com/teamscale/maven/TeamscaleMojoBase.java index 78c808a2e..29b1cb6c2 100644 --- a/teamscale-maven-plugin/src/main/java/com/teamscale/maven/TeamscaleMojoBase.java +++ b/teamscale-maven-plugin/src/main/java/com/teamscale/maven/TeamscaleMojoBase.java @@ -51,14 +51,14 @@ public abstract class TeamscaleMojoBase extends AbstractMojo { *

    * If no end commit is manually specified, the plugin will try to determine the currently checked out Git commit. */ - @Parameter + @Parameter(property = "teamscale.endCommit") public String endCommit; /** * You can optionally use this property to override the revision to which the coverage will be uploaded. * If no revision is manually specified, the plugin will try to determine the current git revision. */ - @Parameter + @Parameter(property = "teamscale.revision") public String revision; /** From 9310a8ea0b652349eb66d72677a641fcb54ea0d9 Mon Sep 17 00:00:00 2001 From: Johannes Veihelmann Date: Mon, 11 Mar 2024 09:12:48 +0100 Subject: [PATCH 43/44] Publish 33.1.2 --- CHANGELOG.md | 2 ++ build.gradle.kts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01ca16680..510065e8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ We use [semantic versioning](http://semver.org/): - PATCH version when you make backwards compatible bug fixes. # Next Release + +# 33.1.2 - [fix] _teamscale-maven-plugin_: Revision and end commit could not be set via command line (user property) # 33.1.1 diff --git a/build.gradle.kts b/build.gradle.kts index 15e60139b..e2a16c037 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,7 +5,7 @@ plugins { group = "com.teamscale" -val appVersion by extra("33.1.1") +val appVersion by extra("33.1.2") val snapshotVersion = appVersion + if (VersionUtils.isTaggedRelease()) "" else "-SNAPSHOT" From 31ff69c690f96ef75b169b38b039afcd187a9cb6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 08:14:09 +0000 Subject: [PATCH 44/44] Update dependency org.apache.maven.plugins:maven-gpg-plugin to v3.2.0 --- teamscale-maven-plugin/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teamscale-maven-plugin/pom.xml b/teamscale-maven-plugin/pom.xml index d264d5f80..74956ffbc 100644 --- a/teamscale-maven-plugin/pom.xml +++ b/teamscale-maven-plugin/pom.xml @@ -184,7 +184,7 @@ org.apache.maven.plugins maven-gpg-plugin - 3.1.0 + 3.2.0 sign-artifacts