19 Commits

Author SHA1 Message Date
ad2e157c89 Add data migration export/import endpoints
All checks were successful
Backend Build and Test / build (push) Successful in 42s
Add GET /api/export to the Go backend that dumps all users, allowances,
history, and tasks (including completed) as a single JSON snapshot.

Add POST /api/import to the Spring backend that accepts the same JSON,
wipes existing data, inserts all records with original IDs preserved via
native SQL, and resets PostgreSQL sequences to avoid future collisions.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-03-01 16:17:37 +01:00
0ba4ef11db Add spring backend 2026-03-01 13:22:26 +01:00
ccc8d5e8e7 Update .gitea/workflows/deploy.yml (#146)
All checks were successful
Backend Build and Test / build (push) Successful in 1m3s
Backend Deploy / build (push) Successful in 5m7s
Reviewed-on: #146
2026-02-14 16:16:08 +01:00
530939df79 Update .gitea/workflows/deploy.yml (#145)
All checks were successful
Backend Build and Test / build (push) Successful in 1m28s
Backend Deploy / build (push) Successful in 1m52s
Reviewed-on: #145
2026-02-14 16:03:33 +01:00
07536fbcb0 Update .gitea/workflows/build.yml (#144)
Some checks failed
Backend Deploy / build (push) Has been cancelled
Backend Build and Test / build (push) Has been cancelled
Reviewed-on: #144
2026-02-14 16:03:24 +01:00
c9a96f937a transfer-allowances (#143)
All checks were successful
Backend Build and Test / build (push) Successful in 10m9s
Backend Deploy / build (push) Successful in 11m20s
Reviewed-on: #143
2025-10-08 20:21:09 +02:00
Huffle
cdbac17215 Update README.md (#142)
All checks were successful
Backend Build and Test / build (push) Successful in 3m22s
Backend Deploy / build (push) Successful in 15s
Reviewed-on: #142
2025-06-26 09:12:49 +02:00
Huffle
ecd43906ce AP-139 (#141)
Some checks failed
Backend Build and Test / build (push) Successful in 3m40s
Backend Deploy / build (push) Has been cancelled
Reviewed-on: #141
2025-06-26 09:08:57 +02:00
Huffle
d6935d2f54 Update README.md (#140)
All checks were successful
Backend Build and Test / build (push) Successful in 3m58s
Backend Deploy / build (push) Successful in 22s
Add backend links

Reviewed-on: #140
2025-06-26 08:51:15 +02:00
06c8ebcbcc Add support for schedules (#137)
All checks were successful
Backend Build and Test / build (push) Successful in 3m42s
Backend Deploy / build (push) Successful in 4m46s
Reviewed-on: #137
2025-05-30 20:22:33 +02:00
5a20e76df2 Improve compatibility with old browsers (#136)
All checks were successful
Backend Deploy / build (push) Successful in 3m16s
Backend Build and Test / build (push) Successful in 3m22s
Reviewed-on: #136
2025-05-29 13:54:52 +02:00
Huffle
02c5c6ea68 fix toolbar (#135)
All checks were successful
Backend Build and Test / build (push) Successful in 3m44s
Backend Deploy / build (push) Successful in 20s
closes #134

Reviewed-on: #135
2025-05-28 12:02:43 +02:00
Huffle
9cbb8756d1 fix select (#133)
All checks were successful
Backend Build and Test / build (push) Successful in 3m9s
Backend Deploy / build (push) Successful in 20s
closes #117

Reviewed-on: #133
2025-05-28 11:47:11 +02:00
Huffle
604b92b3b3 AP-116 (#131)
All checks were successful
Backend Build and Test / build (push) Successful in 3m17s
Backend Deploy / build (push) Successful in 18s
closes #130

Reviewed-on: #131
2025-05-28 10:27:11 +02:00
Huffle
c7236394d9 add app logo (#129)
Some checks failed
Backend Deploy / build (push) Successful in 17s
Backend Build and Test / build (push) Failing after 2m53s
closes #116

Reviewed-on: #129
2025-05-28 10:19:23 +02:00
Huffle
720ef83c2e change font size and move add and delete button in edit screens (#128)
All checks were successful
Backend Deploy / build (push) Successful in 18s
Backend Build and Test / build (push) Successful in 2m35s
closes #118
closes #119

Reviewed-on: #128
2025-05-28 10:00:18 +02:00
Huffle
5b1d107cac make done button bigger (#127)
All checks were successful
Backend Deploy / build (push) Successful in 20s
Backend Build and Test / build (push) Successful in 2m39s
closes #122

Reviewed-on: #127
2025-05-28 09:31:07 +02:00
Huffle
662257ebc5 fix statusbar (#126)
All checks were successful
Backend Deploy / build (push) Successful in 24s
Backend Build and Test / build (push) Successful in 2m59s
closes #123

Reviewed-on: #126
2025-05-28 09:18:29 +02:00
Huffle
ad48882bca icon (#115)
All checks were successful
Backend Build and Test / build (push) Successful in 3m16s
Backend Deploy / build (push) Successful in 22s
Reviewed-on: #115
2025-05-27 19:13:23 +02:00
246 changed files with 14475 additions and 185 deletions

View File

@@ -3,7 +3,7 @@ on: [push]
jobs:
build:
runs-on: standard-latest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

View File

@@ -6,7 +6,7 @@ on:
jobs:
build:
runs-on: standard-latest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
@@ -19,9 +19,12 @@ jobs:
- name: Build
run: |
cd backend
docker build -t gitea.seeseepuff.be/seeseemelk/allowance-planner:$(git rev-parse --short HEAD) .
docker build -t gitea.seeseepuff.be/seeseemelk/allowance-planner:latest .
- name: Push
run: |
cd backend
docker push gitea.seeseepuff.be/seeseemelk/allowance-planner:$(git rev-parse --short HEAD)
docker push gitea.seeseepuff.be/seeseemelk/allowance-planner:latest
- name: Trigger watchtower
uses: https://gitea.seeseepuff.be/actions/watchtower@master

View File

@@ -14,3 +14,19 @@ In order to run the frontend, go to the `allowance-planner-v2` directory in the
```bash
$ ionic serve
```
## Running frontend
In order to build the frontend for android, go to the `allowance-planner-v2` directory in the `frontend` directory and run:
```bash
$ ionic capacitor build android
```
## Backend links
```bash
Main: https://allowanceplanner.seeseepuff.be/api
```
```bash
Test: http://localhost:8080/api
```

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,2 @@
#Sat Feb 28 18:28:04 CET 2026
gradle.version=9.3.1

Binary file not shown.

17
backend-spring/Dockerfile Normal file
View 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"]

View 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()
}

File diff suppressed because one or more lines are too long

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:26.446+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:26.447+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:26.847+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:26.848+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:25.902+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:25.903+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:26.092+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:26.093+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:24.717+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:24.719+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:26.415+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:26.416+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:25.125+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:25.126+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:24.550+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:24.551+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:25.087+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:25.087+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:24.869+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:24.870+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:27.062+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:27.063+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:24.430+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:24.431+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:27.268+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:27.268+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:24.157+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:24.159+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:25.343+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:25.344+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:26.771+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:26.772+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:25.633+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:25.634+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:24.197+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:24.198+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:27.334+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:27.335+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:24.343+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:24.345+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:27.707+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:27.708+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:25.796+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:25.797+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:22.764+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:22.767+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:26.630+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:26.630+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:27.583+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:27.583+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:25.519+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:25.520+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:25.742+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:25.743+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:24.280+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:24.281+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:27.298+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:27.298+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:27.009+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:27.010+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:25.586+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:25.587+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:26.936+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:26.937+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:27.555+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:27.556+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:24.755+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:24.756+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:25.835+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:25.836+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:24.476+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:24.477+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

View File

@@ -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> &gt;
<a class="breadcrumb" href="index.html">be.seeseepuff.allowanceplanner.ApiTest</a> &gt;
<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 &quot;public&quot; (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 &quot;public&quot; (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 &quot;public&quot;.&quot;flyway_schema_history&quot; 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 &quot;public&quot;.&quot;flyway_schema_history&quot; ...
2026-02-28T18:46:25.870+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Current version of schema &quot;public&quot;: &lt;&lt; Empty Schema &gt;&gt;
2026-02-28T18:46:25.871+01:00 INFO 74623 --- [allowance-planner] [ Test worker] o.f.core.internal.command.DbMigrate : Migrating schema &quot;public&quot; to version &quot;1 - initial&quot;
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 &quot;public&quot;, 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:28PM</p>
</div>
</div>
</body>
</html>

Some files were not shown because too many files have changed in this diff Show More