feature/implement-external-login-api #30

Merged
kasun merged 32 commits from feature/implement-external-login-api into main 2026-04-09 21:21:58 +02:00
Showing only changes of commit c553735653 - Show all commits
@@ -9,10 +9,8 @@ import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.ActiveProfiles;
import org.springframework.context.ApplicationContext;
import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.jupiter.api.Assertions.assertNotNull;
@SpringBootTest
@ActiveProfiles("test")
@@ -21,9 +19,6 @@ class ApplicationTests {
@Autowired
private DataSource dataSource;
@Autowired
private ApplicationContext context;
@Test
void contextLoads() {
}
@@ -34,10 +29,4 @@ class ApplicationTests {
assertThat(connection.getMetaData().getURL()).contains("vaessl_test");
}
}
@Test
void main() {
Application.main(new String[] {});
assertNotNull(context, "The Spring context should not be null");
}
}