Skip to content

Commit 6e158f9

Browse files
committed
fixed lombok annotations
1 parent 5a96124 commit 6e158f9

File tree

6 files changed

+29
-22
lines changed

6 files changed

+29
-22
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
[2025-06-05 00:04:26,817] [main] [com.cmccarthyirl.common.TestListener] ============= Starting test: testGetWeatherForDublin =============
2-
[2025-06-05 00:04:28,149] [main] [com.cmccarthyirl.api.test.WeatherAPITest] The weather for Dublin is: {"coord":{"lon":-121.9358,"lat":37.7021},"weather":[{"id":721,"main":"Haze","description":"haze","icon":"50d"}],"base":"stations","main":{"temp":286.01,"feels_like":285.52,"temp_min":284.42,"temp_max":287.77,"pressure":1011,"humidity":83,"sea_level":1011,"grnd_level":986},"visibility":8047,"wind":{"speed":0,"deg":0},"clouds":{"all":75},"dt":1749045679,"sys":{"type":2,"id":2016191,"country":"US","sunrise":1749041209,"sunset":1749093946},"timezone":-25200,"id":5344157,"name":"Dublin","cod":200}
3-
[2025-06-05 00:04:28,155] [main] [com.cmccarthyirl.common.TestListener] ============= Passed test: testGetWeatherForDublin ==============
1+
[2025-12-09 07:53:32,562] [main] [com.cmccarthyirl.common.TestListener] ============= Starting test: testGetWeatherForDublin =============
2+
[2025-12-09 07:53:32,966] [main] [com.cmccarthyirl.api.test.WeatherAPITest] The weather for Dublin is: {"coord":{"lon":-121.9358,"lat":37.7021},"weather":[{"id":802,"main":"Clouds","description":"scattered clouds","icon":"03d"}],"base":"stations","main":{"temp":286.75,"feels_like":285.97,"temp_min":284.96,"temp_max":287.12,"pressure":1024,"humidity":69,"sea_level":1024,"grnd_level":999},"visibility":10000,"wind":{"speed":1.26,"deg":18,"gust":1.94},"clouds":{"all":37},"dt":1765226450,"sys":{"type":2,"id":2007965,"country":"US","sunrise":1765206654,"sunset":1765241343},"timezone":-28800,"id":5344157,"name":"Dublin","cod":200}
3+
[2025-12-09 07:53:32,968] [main] [com.cmccarthyirl.common.TestListener] ============= Passed test: testGetWeatherForDublin ==============
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
[2025-06-05 00:04:28,159] [main] [com.cmccarthyirl.common.TestListener] ============= Starting test: testGetWeatherForSydney =============
2-
[2025-06-05 00:04:28,259] [main] [com.cmccarthyirl.api.test.WeatherAPITest] The weather for Sydney is: {"coord":{"lon":151.2073,"lat":-33.8679},"weather":[{"id":802,"main":"Clouds","description":"scattered clouds","icon":"03n"}],"base":"stations","main":{"temp":283.23,"feels_like":281.96,"temp_min":282.16,"temp_max":283.91,"pressure":1022,"humidity":64,"sea_level":1022,"grnd_level":1016},"visibility":10000,"wind":{"speed":7.72,"deg":260},"clouds":{"all":40},"dt":1749045544,"sys":{"type":2,"id":2018875,"country":"AU","sunrise":1749070434,"sunset":1749106418},"timezone":36000,"id":2147714,"name":"Sydney","cod":200}
3-
[2025-06-05 00:04:28,260] [main] [com.cmccarthyirl.common.TestListener] ============= Passed test: testGetWeatherForSydney ==============
1+
[2025-12-09 07:53:32,970] [main] [com.cmccarthyirl.common.TestListener] ============= Starting test: testGetWeatherForSydney =============
2+
[2025-12-09 07:53:33,158] [main] [com.cmccarthyirl.api.test.WeatherAPITest] The weather for Sydney is: {"coord":{"lon":151.2073,"lat":-33.8679},"weather":[{"id":800,"main":"Clear","description":"clear sky","icon":"01d"}],"base":"stations","main":{"temp":293.9,"feels_like":294.35,"temp_min":292.72,"temp_max":295.02,"pressure":1013,"humidity":89,"sea_level":1013,"grnd_level":1008},"visibility":10000,"wind":{"speed":1.61,"deg":275,"gust":2.01},"clouds":{"all":1},"dt":1765226954,"sys":{"type":2,"id":2091046,"country":"AU","sunrise":1765219047,"sunset":1765270654},"timezone":39600,"id":2147714,"name":"Sydney","cod":200}
3+
[2025-12-09 07:53:33,159] [main] [com.cmccarthyirl.common.TestListener] ============= Passed test: testGetWeatherForSydney ==============

pom.xml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<java.version>17</java.version>
2121
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2222
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
23-
<logback.version>1.5.13</logback.version>
23+
<logback.version>1.5.21</logback.version>
2424
<maven.compiler.arguments>--add-opens jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED
2525
</maven.compiler.arguments>
2626
</properties>
@@ -33,6 +33,13 @@
3333
<configuration>
3434
<source>17</source>
3535
<target>17</target>
36+
<annotationProcessorPaths>
37+
<path>
38+
<groupId>org.projectlombok</groupId>
39+
<artifactId>lombok</artifactId>
40+
<version>1.18.38</version>
41+
</path>
42+
</annotationProcessorPaths>
3643
</configuration>
3744
</plugin>
3845
<plugin>
@@ -82,7 +89,7 @@
8289
<dependency>
8390
<groupId>org.projectlombok</groupId>
8491
<artifactId>lombok</artifactId>
85-
<version>1.18.36</version>
92+
<version>1.18.38</version>
8693
<scope>provided</scope>
8794
</dependency>
8895
</dependencies>

ui/logs/Boot.log

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[2025-06-05 00:04:10,541] [main] [com.cmccarthyirl.ui.utils.PlaywrightManager] Created a browser for: chrome
1+
[2025-12-09 07:53:19,948] [main] [com.cmccarthyirl.ui.utils.PlaywrightManager] Created a browser for: chrome

ui/logs/UI-searchForExactTitle.log

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
[2025-06-05 00:04:11,112] [main] [com.cmccarthyirl.common.TestListener] ============= Starting test: searchForExactTitle =============
2-
[2025-06-05 00:04:16,316] [main] [com.cmccarthyirl.ui.test.UITest] The user navigated to: https://automationbookstore.dev/
3-
[2025-06-05 00:04:16,425] [main] [com.cmccarthyirl.ui.page.SearchPage] The user cleared the search field
4-
[2025-06-05 00:04:16,520] [main] [com.cmccarthyirl.ui.page.SearchPage] The user searched for Agile Testing
5-
[2025-06-05 00:04:16,777] [main] [com.cmccarthyirl.ui.test.UITest] The search results contained: 1 book
6-
[2025-06-05 00:04:16,802] [main] [com.cmccarthyirl.ui.test.UITest] The book's title is: [Agile Testing]
7-
[2025-06-05 00:04:16,810] [main] [com.cmccarthyirl.common.TestListener] ============= Passed test: searchForExactTitle ==============
1+
[2025-12-09 07:53:20,094] [main] [com.cmccarthyirl.common.TestListener] ============= Starting test: searchForExactTitle =============
2+
[2025-12-09 07:53:22,393] [main] [com.cmccarthyirl.ui.test.UITest] The user navigated to: https://automationbookstore.dev/
3+
[2025-12-09 07:53:22,491] [main] [com.cmccarthyirl.ui.page.SearchPage] The user cleared the search field
4+
[2025-12-09 07:53:22,551] [main] [com.cmccarthyirl.ui.page.SearchPage] The user searched for Agile Testing
5+
[2025-12-09 07:53:22,855] [main] [com.cmccarthyirl.ui.test.UITest] The search results contained: 1 book
6+
[2025-12-09 07:53:22,865] [main] [com.cmccarthyirl.ui.test.UITest] The book's title is: [Agile Testing]
7+
[2025-12-09 07:53:22,870] [main] [com.cmccarthyirl.common.TestListener] ============= Passed test: searchForExactTitle ==============
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
[2025-06-05 00:04:16,811] [main] [com.cmccarthyirl.common.TestListener] ============= Starting test: searchForPartialTitle =============
2-
[2025-06-05 00:04:16,976] [main] [com.cmccarthyirl.ui.test.UITest] The user navigated to: https://automationbookstore.dev/
3-
[2025-06-05 00:04:17,053] [main] [com.cmccarthyirl.ui.page.SearchPage] The user cleared the search field
4-
[2025-06-05 00:04:17,115] [main] [com.cmccarthyirl.ui.page.SearchPage] The user searched for Test
5-
[2025-06-05 00:04:17,328] [main] [com.cmccarthyirl.ui.test.UITest] Verify the expected books were returned: [Test Automation in the Real World, Experiences of Test Automation, Agile Testing, How Google Tests Software, Java For Testers]
6-
[2025-06-05 00:04:17,365] [main] [com.cmccarthyirl.common.TestListener] ============= Passed test: searchForPartialTitle ==============
1+
[2025-12-09 07:53:22,873] [main] [com.cmccarthyirl.common.TestListener] ============= Starting test: searchForPartialTitle =============
2+
[2025-12-09 07:53:22,999] [main] [com.cmccarthyirl.ui.test.UITest] The user navigated to: https://automationbookstore.dev/
3+
[2025-12-09 07:53:23,058] [main] [com.cmccarthyirl.ui.page.SearchPage] The user cleared the search field
4+
[2025-12-09 07:53:23,113] [main] [com.cmccarthyirl.ui.page.SearchPage] The user searched for Test
5+
[2025-12-09 07:53:23,396] [main] [com.cmccarthyirl.ui.test.UITest] Verify the expected books were returned: [Test Automation in the Real World, Experiences of Test Automation, Agile Testing, How Google Tests Software, Java For Testers]
6+
[2025-12-09 07:53:23,415] [main] [com.cmccarthyirl.common.TestListener] ============= Passed test: searchForPartialTitle ==============

0 commit comments

Comments
 (0)