Skip to content

Commit

Permalink
Hotfix - noname
Browse files Browse the repository at this point in the history
  • Loading branch information
iwokonl committed Apr 18, 2024
1 parent 196e272 commit f24db79
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 18 deletions.
20 changes: 4 additions & 16 deletions Back/Spring/backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<artifactId>spring-cloud-azure-dependencies</artifactId>
<version>5.11.0</version>
<type>pom</type>
<scope>import</scope>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.paypal.sdk</groupId>
Expand Down Expand Up @@ -58,11 +58,7 @@
<version>3.2.3</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
Expand Down Expand Up @@ -145,16 +141,7 @@
<scope>test</scope>
</dependency>

<!-- HttpClient for Spring Boot -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
Expand Down Expand Up @@ -189,7 +176,8 @@
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>1.5.5.Final</version> <!-- Zaktualizuj wersję MapStruct zgodnie z używaną w zależnościach -->
<version>1.5.5.Final
</version> <!-- Zaktualizuj wersję MapStruct zgodnie z używaną w zależnościach -->
</path>
</annotationProcessorPaths>
</configuration>
Expand Down
4 changes: 2 additions & 2 deletions Back/Spring/backend/src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#Konfiguracja aplikacji
server.port=8082
#TODO: zapytac sie czy to jest poprawne rozwiezanie czy rozwiezanie configurePathMatch @Override w klasie WebConfig jest lepsze - Iwo
#TODO: Zapytać się czy lepiej ustawiać w application.properties czy w innych klasach jako @Override - Iwo
#TODO: Zapytac sie czy lepiej ustawiac w application.properties czy w innych klasach jako @Override - Iwo
server.servlet.contextPath=/api

#Konfiguracaj bazy danych
Expand Down Expand Up @@ -55,4 +55,4 @@ paypal.mode = sandbox
# Login/mail: [email protected]
# Password: 12345678

# TODO:Spring boot prifiles, properties ró?ny zasi?g
# TODO:Spring boot prifiles, properties rny zasigąśąś
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package pl.kantor.backend.MVC.model;

import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;

public class AppUserTest {

@Test
public void testAppUser() {
// Utwórz instancję AppUser
AppUser user = new AppUser();
user.setId(1L);
user.setUsername("testUser");
user.setPassword("testPassword");

// Sprawdź, czy pola są poprawnie ustawione
assertEquals(1L, user.getId());
assertEquals("testUser", user.getUsername());
assertEquals("testPassword", user.getPassword());
}
}

0 comments on commit f24db79

Please sign in to comment.