Add spring backend
This commit is contained in:
BIN
backend-spring/.gradle/8.14.2/fileChanges/last-build.bin
Normal file
BIN
backend-spring/.gradle/8.14.2/fileChanges/last-build.bin
Normal file
Binary file not shown.
BIN
backend-spring/.gradle/8.14.2/fileHashes/fileHashes.lock
Normal file
BIN
backend-spring/.gradle/8.14.2/fileHashes/fileHashes.lock
Normal file
Binary file not shown.
0
backend-spring/.gradle/8.14.2/gc.properties
Normal file
0
backend-spring/.gradle/8.14.2/gc.properties
Normal file
BIN
backend-spring/.gradle/8.14/fileChanges/last-build.bin
Normal file
BIN
backend-spring/.gradle/8.14/fileChanges/last-build.bin
Normal file
Binary file not shown.
BIN
backend-spring/.gradle/8.14/fileHashes/fileHashes.lock
Normal file
BIN
backend-spring/.gradle/8.14/fileHashes/fileHashes.lock
Normal file
Binary file not shown.
0
backend-spring/.gradle/8.14/gc.properties
Normal file
0
backend-spring/.gradle/8.14/gc.properties
Normal file
BIN
backend-spring/.gradle/9.3.1/checksums/checksums.lock
Normal file
BIN
backend-spring/.gradle/9.3.1/checksums/checksums.lock
Normal file
Binary file not shown.
BIN
backend-spring/.gradle/9.3.1/checksums/md5-checksums.bin
Normal file
BIN
backend-spring/.gradle/9.3.1/checksums/md5-checksums.bin
Normal file
Binary file not shown.
BIN
backend-spring/.gradle/9.3.1/checksums/sha1-checksums.bin
Normal file
BIN
backend-spring/.gradle/9.3.1/checksums/sha1-checksums.bin
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
backend-spring/.gradle/9.3.1/fileChanges/last-build.bin
Normal file
BIN
backend-spring/.gradle/9.3.1/fileChanges/last-build.bin
Normal file
Binary file not shown.
BIN
backend-spring/.gradle/9.3.1/fileHashes/fileHashes.bin
Normal file
BIN
backend-spring/.gradle/9.3.1/fileHashes/fileHashes.bin
Normal file
Binary file not shown.
BIN
backend-spring/.gradle/9.3.1/fileHashes/fileHashes.lock
Normal file
BIN
backend-spring/.gradle/9.3.1/fileHashes/fileHashes.lock
Normal file
Binary file not shown.
BIN
backend-spring/.gradle/9.3.1/fileHashes/resourceHashesCache.bin
Normal file
BIN
backend-spring/.gradle/9.3.1/fileHashes/resourceHashesCache.bin
Normal file
Binary file not shown.
0
backend-spring/.gradle/9.3.1/gc.properties
Normal file
0
backend-spring/.gradle/9.3.1/gc.properties
Normal file
Binary file not shown.
@@ -0,0 +1,2 @@
|
||||
#Sat Feb 28 18:28:04 CET 2026
|
||||
gradle.version=9.3.1
|
||||
BIN
backend-spring/.gradle/buildOutputCleanup/outputFiles.bin
Normal file
BIN
backend-spring/.gradle/buildOutputCleanup/outputFiles.bin
Normal file
Binary file not shown.
BIN
backend-spring/.gradle/file-system.probe
Normal file
BIN
backend-spring/.gradle/file-system.probe
Normal file
Binary file not shown.
0
backend-spring/.gradle/vcs-1/gc.properties
Normal file
0
backend-spring/.gradle/vcs-1/gc.properties
Normal file
17
backend-spring/Dockerfile
Normal file
17
backend-spring/Dockerfile
Normal file
@@ -0,0 +1,17 @@
|
||||
FROM eclipse-temurin:25-jdk-alpine AS build
|
||||
|
||||
WORKDIR /app
|
||||
COPY gradle ./gradle
|
||||
COPY gradlew build.gradle.kts settings.gradle.kts ./
|
||||
RUN ./gradlew dependencies --no-daemon
|
||||
|
||||
COPY src ./src
|
||||
RUN ./gradlew bootJar --no-daemon -x test
|
||||
|
||||
FROM eclipse-temurin:25-jre-alpine
|
||||
|
||||
WORKDIR /app
|
||||
COPY --from=build /app/build/libs/*.jar app.jar
|
||||
|
||||
EXPOSE 8080
|
||||
CMD ["java", "-jar", "app.jar"]
|
||||
37
backend-spring/build.gradle.kts
Normal file
37
backend-spring/build.gradle.kts
Normal file
@@ -0,0 +1,37 @@
|
||||
plugins {
|
||||
java
|
||||
id("org.springframework.boot") version "4.0.3"
|
||||
id("io.spring.dependency-management") version "1.1.7"
|
||||
}
|
||||
|
||||
group = "be.seeseepuff"
|
||||
version = "0.0.1-SNAPSHOT"
|
||||
|
||||
java {
|
||||
toolchain {
|
||||
languageVersion = JavaLanguageVersion.of(25)
|
||||
}
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation("org.springframework.boot:spring-boot-starter-web")
|
||||
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
|
||||
implementation("org.springframework.boot:spring-boot-starter-thymeleaf")
|
||||
implementation("org.springframework.boot:spring-boot-starter-flyway")
|
||||
implementation("org.flywaydb:flyway-database-postgresql")
|
||||
runtimeOnly("org.postgresql:postgresql")
|
||||
|
||||
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
||||
testImplementation("org.springframework.boot:spring-boot-testcontainers")
|
||||
testImplementation("org.testcontainers:testcontainers-junit-jupiter:2.0.3")
|
||||
testImplementation("org.testcontainers:testcontainers-postgresql:2.0.3")
|
||||
testImplementation("io.rest-assured:rest-assured:6.0.0")
|
||||
}
|
||||
|
||||
tasks.withType<Test> {
|
||||
useJUnitPlatform()
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
659
backend-spring/build/reports/problems/problems-report.html
Normal file
659
backend-spring/build/reports/problems/problems-report.html
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - addAllowanceIdZero()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">addAllowanceIdZero()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>addAllowanceIdZero()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.086s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-addAllowanceIdZero()">2026-02-28T18:46:26.434+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:26.437+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.002s)
|
||||
2026-02-28T18:46:26.439+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.002s)
|
||||
2026-02-28T18:46:26.439+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:26.443+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:26.443+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:26.444+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:26.446+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:26.447+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:26.454+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.005s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-addAllowanceIdZero()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - addAllowanceSimple()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">addAllowanceSimple()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>addAllowanceSimple()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.089s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-addAllowanceSimple()">2026-02-28T18:46:26.834+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:26.838+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.003s)
|
||||
2026-02-28T18:46:26.840+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:26.840+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:26.843+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:26.843+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:26.844+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:26.847+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:26.848+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:26.854+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.004s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-addAllowanceSimple()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - addAllowanceWithSpillage()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">addAllowanceWithSpillage()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>addAllowanceWithSpillage()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.183s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-addAllowanceWithSpillage()">2026-02-28T18:46:25.890+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.895+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.004s)
|
||||
2026-02-28T18:46:25.897+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:25.897+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.899+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:25.900+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.900+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:25.902+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:25.903+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:25.908+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.003s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-addAllowanceWithSpillage()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - completeAllowance()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">completeAllowance()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>completeAllowance()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.152s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-completeAllowance()">2026-02-28T18:46:26.074+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:26.080+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.005s)
|
||||
2026-02-28T18:46:26.081+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:26.082+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:26.087+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:26.087+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.001s)
|
||||
2026-02-28T18:46:26.088+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:26.092+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:26.093+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:26.097+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.003s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-completeAllowance()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - completeAllowanceInvalidAllowanceId()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">completeAllowanceInvalidAllowanceId()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>completeAllowanceInvalidAllowanceId()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.040s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-completeAllowanceInvalidAllowanceId()">2026-02-28T18:46:24.702+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.706+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.004s)
|
||||
2026-02-28T18:46:24.708+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:24.709+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.713+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:24.713+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.714+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:24.717+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:24.719+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:24.724+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.003s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-completeAllowanceInvalidAllowanceId()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - completeAllowanceInvalidUserId()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">completeAllowanceInvalidUserId()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>completeAllowanceInvalidUserId()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.031s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-completeAllowanceInvalidUserId()">2026-02-28T18:46:26.402+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:26.407+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.004s)
|
||||
2026-02-28T18:46:26.409+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:26.409+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:26.411+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:26.412+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:26.413+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:26.415+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:26.416+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:26.420+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.003s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-completeAllowanceInvalidUserId()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - completeTask()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">completeTask()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>completeTask()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.218s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-completeTask()">2026-02-28T18:46:25.110+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.115+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.004s)
|
||||
2026-02-28T18:46:25.116+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:25.116+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.121+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:25.121+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.123+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:25.125+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:25.126+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:25.133+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.004s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-completeTask()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - completeTaskAllowanceWeightsSumTo0()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">completeTaskAllowanceWeightsSumTo0()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>completeTaskAllowanceWeightsSumTo0()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.172s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-completeTaskAllowanceWeightsSumTo0()">2026-02-28T18:46:24.528+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.538+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.009s)
|
||||
2026-02-28T18:46:24.540+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:24.541+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.546+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:24.546+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.547+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:24.550+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:24.551+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:24.556+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.003s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-completeTaskAllowanceWeightsSumTo0()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - completeTaskInvalidId()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">completeTaskInvalidId()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>completeTaskInvalidId()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.035s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-completeTaskInvalidId()">2026-02-28T18:46:25.074+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.077+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.002s)
|
||||
2026-02-28T18:46:25.079+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:25.079+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.083+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:25.083+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.084+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:25.087+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:25.087+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:25.094+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.004s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-completeTaskInvalidId()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - completeTaskWithNoWeights()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">completeTaskWithNoWeights()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>completeTaskWithNoWeights()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.146s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-completeTaskWithNoWeights()">2026-02-28T18:46:24.852+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.857+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.004s)
|
||||
2026-02-28T18:46:24.859+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:24.859+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.864+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:24.864+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.001s)
|
||||
2026-02-28T18:46:24.866+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:24.869+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:24.870+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:24.875+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.003s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-completeTaskWithNoWeights()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - createTask()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">createTask()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>createTask()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.077s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-createTask()">2026-02-28T18:46:27.049+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:27.055+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.004s)
|
||||
2026-02-28T18:46:27.056+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:27.056+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:27.059+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:27.059+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:27.060+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:27.062+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:27.063+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:27.067+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.003s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-createTask()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - createTaskInvalidAssignedUser()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">createTaskInvalidAssignedUser()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>createTaskInvalidAssignedUser()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.047s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-createTaskInvalidAssignedUser()">2026-02-28T18:46:24.412+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.417+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.005s)
|
||||
2026-02-28T18:46:24.420+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.002s)
|
||||
2026-02-28T18:46:24.420+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.425+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:24.425+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.001s)
|
||||
2026-02-28T18:46:24.426+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:24.430+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:24.431+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:24.436+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.003s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-createTaskInvalidAssignedUser()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - createTaskInvalidRequestBody()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">createTaskInvalidRequestBody()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>createTaskInvalidRequestBody()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.032s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-createTaskInvalidRequestBody()">2026-02-28T18:46:27.254+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:27.260+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.005s)
|
||||
2026-02-28T18:46:27.261+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:27.261+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:27.264+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:27.264+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:27.265+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:27.268+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:27.268+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:27.273+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.002s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-createTaskInvalidRequestBody()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - createTaskNoName()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">createTaskNoName()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>createTaskNoName()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.044s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-createTaskNoName()">2026-02-28T18:46:24.139+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.145+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.005s)
|
||||
2026-02-28T18:46:24.148+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.003s)
|
||||
2026-02-28T18:46:24.149+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.153+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:24.153+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.154+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:24.157+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:24.159+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:24.164+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.004s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-createTaskNoName()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - createUserAllowance()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">createUserAllowance()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>createUserAllowance()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.076s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-createUserAllowance()">2026-02-28T18:46:25.331+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.334+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.002s)
|
||||
2026-02-28T18:46:25.335+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:25.336+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.339+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:25.340+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.341+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:25.343+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:25.344+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:25.348+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.002s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-createUserAllowance()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - createUserAllowanceBadId()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">createUserAllowanceBadId()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>createUserAllowanceBadId()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.034s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-createUserAllowanceBadId()">2026-02-28T18:46:26.759+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:26.764+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.005s)
|
||||
2026-02-28T18:46:26.766+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:26.766+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:26.768+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:26.769+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:26.769+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:26.771+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:26.772+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:26.777+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.004s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-createUserAllowanceBadId()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,117 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - createUserAllowanceInvalidInput()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">createUserAllowanceInvalidInput()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>createUserAllowanceInvalidInput()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.048s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-createUserAllowanceInvalidInput()">2026-02-28T18:46:25.621+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.624+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.002s)
|
||||
2026-02-28T18:46:25.625+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:25.626+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.629+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:25.630+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.630+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:25.633+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:25.634+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:25.640+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.004s)
|
||||
2026-02-28T18:46:25.659+01:00 WARN 74623 --- [allowance-planner] [o-auto-1-exec-3] .w.s.m.s.DefaultHandlerExceptionResolver : Resolved [org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Cannot map `null` into type `double` (set DeserializationConfig.DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES to 'false' to allow)]
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-createUserAllowanceInvalidInput()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - createUserAllowanceNoUser()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">createUserAllowanceNoUser()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>createUserAllowanceNoUser()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.040s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-createUserAllowanceNoUser()">2026-02-28T18:46:24.184+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.187+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.003s)
|
||||
2026-02-28T18:46:24.188+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.188+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.192+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:24.192+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.193+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:24.197+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:24.198+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:24.203+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.003s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-createUserAllowanceNoUser()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - deleteTask()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">deleteTask()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>deleteTask()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.092s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-deleteTask()">2026-02-28T18:46:27.323+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:27.327+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.003s)
|
||||
2026-02-28T18:46:27.328+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:27.328+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:27.331+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:27.331+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:27.332+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:27.334+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:27.335+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:27.340+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.003s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-deleteTask()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - deleteTaskNotFound()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">deleteTaskNotFound()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>deleteTaskNotFound()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.039s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-deleteTaskNotFound()">2026-02-28T18:46:24.327+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.332+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.004s)
|
||||
2026-02-28T18:46:24.333+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:24.334+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.337+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:24.338+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.001s)
|
||||
2026-02-28T18:46:24.340+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:24.343+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:24.345+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:24.350+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.003s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-deleteTaskNotFound()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - deleteUserAllowance()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">deleteUserAllowance()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>deleteUserAllowance()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.067s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-deleteUserAllowance()">2026-02-28T18:46:27.695+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:27.699+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.003s)
|
||||
2026-02-28T18:46:27.700+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:27.701+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:27.704+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:27.704+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:27.705+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:27.707+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:27.708+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:27.713+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.003s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-deleteUserAllowance()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - deleteUserAllowanceInvalidId()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">deleteUserAllowanceInvalidId()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>deleteUserAllowanceInvalidId()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.042s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-deleteUserAllowanceInvalidId()">2026-02-28T18:46:25.780+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.786+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.005s)
|
||||
2026-02-28T18:46:25.787+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:25.787+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.791+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:25.791+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.792+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:25.796+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:25.797+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:25.802+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.003s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-deleteUserAllowanceInvalidId()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,134 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - deleteUserAllowanceNotFound()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">deleteUserAllowanceNotFound()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>deleteUserAllowanceNotFound()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">error output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">1.270s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-deleteUserAllowanceNotFound()">2026-02-28T18:46:22.732+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:22.742+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.009s)
|
||||
2026-02-28T18:46:22.747+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.004s)
|
||||
2026-02-28T18:46:22.748+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:22.756+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:22.757+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.001s)
|
||||
2026-02-28T18:46:22.760+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:22.764+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:22.767+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:22.774+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.005s)
|
||||
2026-02-28T18:46:23.272+01:00 INFO 74623 --- [allowance-planner] [o-auto-1-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
|
||||
2026-02-28T18:46:23.273+01:00 INFO 74623 --- [allowance-planner] [o-auto-1-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
|
||||
2026-02-28T18:46:23.274+01:00 INFO 74623 --- [allowance-planner] [o-auto-1-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-deleteUserAllowanceNotFound()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>error output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stderr-deleteUserAllowanceNotFound()">Mockito is currently self-attaching to enable the inline-mock-maker. This will no longer work in future releases of the JDK. Please add Mockito as an agent to your build as described in Mockito's documentation: https://javadoc.io/doc/org.mockito/mockito-core/latest/org.mockito/org/mockito/Mockito.html#0.3
|
||||
WARNING: A Java agent has been loaded dynamically (/home/seeseemelk/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy-agent/1.17.8/f09415827a71be7ed621c7bd02550678f28bc81c/byte-buddy-agent-1.17.8.jar)
|
||||
WARNING: If a serviceability tool is in use, please run with -XX:+EnableDynamicAgentLoading to hide this warning
|
||||
WARNING: If a serviceability tool is not in use, please run with -Djdk.instrument.traceUsage for more information
|
||||
WARNING: Dynamic loading of agents will be disallowed by default in a future release
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stderr-deleteUserAllowanceNotFound()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - deleteUserRestAllowance()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">deleteUserRestAllowance()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>deleteUserRestAllowance()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.027s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-deleteUserRestAllowance()">2026-02-28T18:46:26.618+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:26.622+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.003s)
|
||||
2026-02-28T18:46:26.623+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:26.624+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:26.626+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:26.626+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:26.627+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:26.630+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:26.630+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:26.635+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.003s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-deleteUserRestAllowance()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - getHistory()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">getHistory()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>getHistory()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.073s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-getHistory()">2026-02-28T18:46:27.575+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:27.578+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.002s)
|
||||
2026-02-28T18:46:27.579+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.000s)
|
||||
2026-02-28T18:46:27.579+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:27.580+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:27.581+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:27.581+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:27.583+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:27.583+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:27.586+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.002s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-getHistory()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - getTask()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">getTask()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>getTask()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.067s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-getTask()">2026-02-28T18:46:25.504+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.509+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.004s)
|
||||
2026-02-28T18:46:25.511+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:25.511+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.515+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:25.515+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.516+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:25.519+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:25.520+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:25.524+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.003s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-getTask()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - getTaskBadId()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">getTaskBadId()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>getTaskBadId()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.053s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-getTaskBadId()">2026-02-28T18:46:25.727+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.732+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.004s)
|
||||
2026-02-28T18:46:25.734+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:25.734+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.738+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:25.739+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.001s)
|
||||
2026-02-28T18:46:25.740+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:25.742+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:25.743+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:25.749+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.004s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-getTaskBadId()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - getTaskInvalidId()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">getTaskInvalidId()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>getTaskInvalidId()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.062s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-getTaskInvalidId()">2026-02-28T18:46:24.265+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.269+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.003s)
|
||||
2026-02-28T18:46:24.270+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.270+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.274+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:24.275+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.001s)
|
||||
2026-02-28T18:46:24.276+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:24.280+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:24.281+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:24.288+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.004s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-getTaskInvalidId()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - getTaskWhenNoTasks()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">getTaskWhenNoTasks()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>getTaskWhenNoTasks()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.034s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-getTaskWhenNoTasks()">2026-02-28T18:46:27.287+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:27.290+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.003s)
|
||||
2026-02-28T18:46:27.291+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:27.292+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:27.295+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:27.295+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:27.296+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:27.298+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:27.298+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:27.302+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.002s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-getTaskWhenNoTasks()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - getTasksWhenTasks()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">getTasksWhenTasks()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>getTasksWhenTasks()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.054s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-getTasksWhenTasks()">2026-02-28T18:46:26.995+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:26.999+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.003s)
|
||||
2026-02-28T18:46:27.001+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:27.001+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:27.005+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:27.005+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:27.007+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:27.009+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:27.010+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:27.016+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.002s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-getTasksWhenTasks()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - getUser()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">getUser()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>getUser()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.048s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-getUser()">2026-02-28T18:46:25.572+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.577+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.005s)
|
||||
2026-02-28T18:46:25.578+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.578+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.581+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:25.581+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.582+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:25.586+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:25.587+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:25.592+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.003s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-getUser()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - getUserAllowance()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">getUserAllowance()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>getUserAllowance()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.071s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-getUserAllowance()">2026-02-28T18:46:26.923+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:26.927+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.003s)
|
||||
2026-02-28T18:46:26.928+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:26.928+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:26.931+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:26.932+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:26.933+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:26.936+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:26.937+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:26.941+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.003s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-getUserAllowance()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - getUserAllowanceBadId()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">getUserAllowanceBadId()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>getUserAllowanceBadId()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.031s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-getUserAllowanceBadId()">2026-02-28T18:46:27.546+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:27.549+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.002s)
|
||||
2026-02-28T18:46:27.550+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:27.550+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:27.553+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:27.553+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:27.553+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:27.555+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:27.556+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:27.563+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.003s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-getUserAllowanceBadId()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - getUserAllowanceById()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">getUserAllowanceById()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>getUserAllowanceById()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.110s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-getUserAllowanceById()">2026-02-28T18:46:24.741+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.745+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.004s)
|
||||
2026-02-28T18:46:24.747+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:24.747+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.751+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:24.751+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.001s)
|
||||
2026-02-28T18:46:24.752+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:24.755+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:24.756+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:24.761+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.003s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-getUserAllowanceById()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - getUserAllowanceNoUser()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">getUserAllowanceNoUser()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>getUserAllowanceNoUser()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.035s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-getUserAllowanceNoUser()">2026-02-28T18:46:25.823+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.828+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.004s)
|
||||
2026-02-28T18:46:25.829+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:25.829+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.832+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:25.832+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.833+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:25.835+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:25.836+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:25.843+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.005s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-getUserAllowanceNoUser()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - getUserAllowanceWhenNoAllowancePresent()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">getUserAllowanceWhenNoAllowancePresent()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>getUserAllowanceWhenNoAllowancePresent()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.065s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-getUserAllowanceWhenNoAllowancePresent()">2026-02-28T18:46:24.458+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.464+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.005s)
|
||||
2026-02-28T18:46:24.466+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:24.466+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.471+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:24.471+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.472+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:24.476+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:24.477+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:24.482+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.003s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-getUserAllowanceWhenNoAllowancePresent()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - getUserBadId()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">getUserBadId()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>getUserBadId()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.031s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-getUserBadId()">2026-02-28T18:46:25.858+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.862+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.004s)
|
||||
2026-02-28T18:46:25.864+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:25.864+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.867+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:25.867+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.868+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:25.870+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:25.871+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:25.878+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.005s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-getUserBadId()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - getUserByAllowanceByIdBadAllowanceId()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">getUserByAllowanceByIdBadAllowanceId()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>getUserByAllowanceByIdBadAllowanceId()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.068s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-getUserByAllowanceByIdBadAllowanceId()">2026-02-28T18:46:23.710+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:23.717+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.006s)
|
||||
2026-02-28T18:46:23.723+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.005s)
|
||||
2026-02-28T18:46:23.723+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:23.728+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:23.729+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.001s)
|
||||
2026-02-28T18:46:23.731+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:23.737+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:23.740+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:23.749+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.006s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-getUserByAllowanceByIdBadAllowanceId()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - getUserByAllowanceByIdBadUserId()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">getUserByAllowanceByIdBadUserId()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>getUserByAllowanceByIdBadUserId()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.040s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-getUserByAllowanceByIdBadUserId()">2026-02-28T18:46:24.225+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.231+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.005s)
|
||||
2026-02-28T18:46:24.232+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:24.233+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:24.237+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:24.237+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.001s)
|
||||
2026-02-28T18:46:24.239+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:24.243+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:24.244+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:24.250+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.004s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-getUserByAllowanceByIdBadUserId()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,116 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta http-equiv="x-ua-compatible" content="IE=edge"/>
|
||||
<title>Test results - getUserByAllowanceByIdInvalidUserId()</title>
|
||||
<link href="../css/base-style.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="../css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="../js/report.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<div class="breadcrumbs">
|
||||
<a class="breadcrumb" href="../index.html">all</a> >
|
||||
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> >
|
||||
<span class="breadcrumb">getUserByAllowanceByIdInvalidUserId()</span>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="successGroup" href="#">Gradle Test Run :test</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>Gradle Test Run :test</h2>
|
||||
<h1>getUserByAllowanceByIdInvalidUserId()</h1>
|
||||
<div class="tab-container">
|
||||
<ul class="tabLinks">
|
||||
<li>
|
||||
<a class="" href="#">summary</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="" href="#">standard output</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab">
|
||||
<h2>summary</h2>
|
||||
<div>
|
||||
<div class="summary">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="summaryGroup">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">1</div>
|
||||
<p>tests</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>failures</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox">
|
||||
<div class="counter">0</div>
|
||||
<p>skipped</p>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox duration">
|
||||
<div class="counter">0.033s</div>
|
||||
<p>duration</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="infoBox success successRate">
|
||||
<div class="percent">100%</div>
|
||||
<p>successful</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab">
|
||||
<h2>standard output</h2>
|
||||
<span class="code">
|
||||
<pre id="root-0-test-stdout-getUserByAllowanceByIdInvalidUserId()">2026-02-28T18:46:24.999+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped pre-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.003+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.003s)
|
||||
2026-02-28T18:46:25.004+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully cleaned schema "public" (execution time 00:00.001s)
|
||||
2026-02-28T18:46:25.004+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.command.clean.CleanExecutor : Successfully dropped post-schema database level objects (execution time 00:00.000s)
|
||||
2026-02-28T18:46:25.009+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Schema history table "public"."flyway_schema_history" does not exist yet
|
||||
2026-02-28T18:46:25.009+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbValidate : Successfully validated 1 migration (execution time 00:00.001s)
|
||||
2026-02-28T18:46:25.010+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.c.i.s.JdbcTableSchemaHistory : Creating Schema History table "public"."flyway_schema_history" ...
|
||||
2026-02-28T18:46:25.013+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema "public": << Empty Schema >>
|
||||
2026-02-28T18:46:25.014+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema "public" to version "1 - initial"
|
||||
2026-02-28T18:46:25.019+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Successfully applied 1 migration to schema "public", now at version v1 (execution time 00:00.003s)
|
||||
</pre>
|
||||
<button class="clipboard-copy-btn" aria-label="Copy to clipboard" data-copy-element-id="root-0-test-stdout-getUserByAllowanceByIdInvalidUserId()">Copy</button>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>
|
||||
<div>
|
||||
<label class="hidden" id="label-for-line-wrapping-toggle" for="line-wrapping-toggle">Wrap lines
|
||||
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
|
||||
</label>
|
||||
</div>Generated by
|
||||
<a href="https://www.gradle.org">Gradle 9.3.1</a> at Feb 28, 2026, 6:46:28 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user