+
You have been logged out
+
There was an error, please try again
+
+
Login
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/spring-social-login/src/test/java/org/baeldung/test/ApplicationIntegrationTest.java b/spring-social-login/src/test/java/org/baeldung/test/ApplicationIntegrationTest.java
new file mode 100644
index 0000000000..43aaea18b1
--- /dev/null
+++ b/spring-social-login/src/test/java/org/baeldung/test/ApplicationIntegrationTest.java
@@ -0,0 +1,18 @@
+package org.baeldung.test;
+
+import org.baeldung.config.Application;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
+import org.springframework.test.context.junit4.SpringRunner;
+
+@RunWith(SpringRunner.class)
+@SpringBootTest(classes = Application.class, webEnvironment = WebEnvironment.RANDOM_PORT)
+public class ApplicationIntegrationTest {
+
+ @Test
+ public void whenLoadApplication_thenSuccess() {
+
+ }
+}
diff --git a/spring-thymeleaf/README.md b/spring-thymeleaf/README.md
index a8ca755044..98fb4b043b 100644
--- a/spring-thymeleaf/README.md
+++ b/spring-thymeleaf/README.md
@@ -2,15 +2,16 @@
## Spring Thymeleaf Example Project
-
### Relevant Articles:
- [Introduction to Using Thymeleaf in Spring](http://www.baeldung.com/thymeleaf-in-spring-mvc)
- [CSRF Protection with Spring MVC and Thymeleaf](http://www.baeldung.com/csrf-thymeleaf-with-spring-security)
+
### Build the Project
mvn clean install
+
### Run the Project
mvn cargo:run
- **note**: starts on port '8082'