diff --git a/samples/02.echo-bot/pom.xml b/samples/02.echo-bot/pom.xml
index 8bb55de88..58da4dc5b 100644
--- a/samples/02.echo-bot/pom.xml
+++ b/samples/02.echo-bot/pom.xml
@@ -57,6 +57,11 @@
2.4.0
test
+
+ org.junit.vintage
+ junit-vintage-engine
+ test
+
org.slf4j
diff --git a/samples/02.echo-bot/src/test/java/com/microsoft/bot/sample/echo/ApplicationTests.java b/samples/02.echo-bot/src/test/java/com/microsoft/bot/sample/echo/ApplicationTest.java
similarity index 89%
rename from samples/02.echo-bot/src/test/java/com/microsoft/bot/sample/echo/ApplicationTests.java
rename to samples/02.echo-bot/src/test/java/com/microsoft/bot/sample/echo/ApplicationTest.java
index 68c51b15c..7cab25783 100644
--- a/samples/02.echo-bot/src/test/java/com/microsoft/bot/sample/echo/ApplicationTests.java
+++ b/samples/02.echo-bot/src/test/java/com/microsoft/bot/sample/echo/ApplicationTest.java
@@ -1,19 +1,19 @@
-// Copyright (c) Microsoft Corporation. All rights reserved.
-// Licensed under the MIT License.
-
-package com.microsoft.bot.sample.echo;
-
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.boot.test.context.SpringBootTest;
-import org.springframework.test.context.junit4.SpringRunner;
-
-@RunWith(SpringRunner.class)
-@SpringBootTest
-public class ApplicationTests {
-
- @Test
- public void contextLoads() {
- }
-
-}
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+package com.microsoft.bot.sample.echo;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.junit4.SpringRunner;
+
+@RunWith(SpringRunner.class)
+@SpringBootTest
+public class ApplicationTest {
+
+ @Test
+ public void contextLoads() {
+ }
+
+}
diff --git a/samples/03.welcome-user/pom.xml b/samples/03.welcome-user/pom.xml
index f9ebd8cd0..72edaa5ef 100644
--- a/samples/03.welcome-user/pom.xml
+++ b/samples/03.welcome-user/pom.xml
@@ -57,6 +57,11 @@
4.13.1
test
+
+ org.junit.vintage
+ junit-vintage-engine
+ test
+
org.slf4j
diff --git a/samples/03.welcome-user/src/test/java/com/microsoft/bot/sample/welcomeuser/ApplicationTests.java b/samples/03.welcome-user/src/test/java/com/microsoft/bot/sample/welcomeuser/ApplicationTest.java
similarity index 89%
rename from samples/03.welcome-user/src/test/java/com/microsoft/bot/sample/welcomeuser/ApplicationTests.java
rename to samples/03.welcome-user/src/test/java/com/microsoft/bot/sample/welcomeuser/ApplicationTest.java
index 5cfb1289b..693bec16e 100644
--- a/samples/03.welcome-user/src/test/java/com/microsoft/bot/sample/welcomeuser/ApplicationTests.java
+++ b/samples/03.welcome-user/src/test/java/com/microsoft/bot/sample/welcomeuser/ApplicationTest.java
@@ -1,19 +1,19 @@
-// Copyright (c) Microsoft Corporation. All rights reserved.
-// Licensed under the MIT License.
-
-package com.microsoft.bot.sample.welcomeuser;
-
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.boot.test.context.SpringBootTest;
-import org.springframework.test.context.junit4.SpringRunner;
-
-@RunWith(SpringRunner.class)
-@SpringBootTest
-public class ApplicationTests {
-
- @Test
- public void contextLoads() {
- }
-
-}
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+package com.microsoft.bot.sample.welcomeuser;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.junit4.SpringRunner;
+
+@RunWith(SpringRunner.class)
+@SpringBootTest
+public class ApplicationTest {
+
+ @Test
+ public void contextLoads() {
+ }
+
+}
diff --git a/samples/08.suggested-actions/pom.xml b/samples/08.suggested-actions/pom.xml
index 26774790a..1070cd534 100644
--- a/samples/08.suggested-actions/pom.xml
+++ b/samples/08.suggested-actions/pom.xml
@@ -57,6 +57,11 @@
4.13.1
test
+
+ org.junit.vintage
+ junit-vintage-engine
+ test
+
org.slf4j
diff --git a/samples/08.suggested-actions/src/test/java/com/microsoft/bot/sample/suggestedactions/ApplicationTests.java b/samples/08.suggested-actions/src/test/java/com/microsoft/bot/sample/suggestedactions/ApplicationTest.java
similarity index 89%
rename from samples/08.suggested-actions/src/test/java/com/microsoft/bot/sample/suggestedactions/ApplicationTests.java
rename to samples/08.suggested-actions/src/test/java/com/microsoft/bot/sample/suggestedactions/ApplicationTest.java
index 8b23b71e3..387aac524 100644
--- a/samples/08.suggested-actions/src/test/java/com/microsoft/bot/sample/suggestedactions/ApplicationTests.java
+++ b/samples/08.suggested-actions/src/test/java/com/microsoft/bot/sample/suggestedactions/ApplicationTest.java
@@ -1,19 +1,19 @@
-// Copyright (c) Microsoft Corporation. All rights reserved.
-// Licensed under the MIT License.
-
-package com.microsoft.bot.sample.suggestedactions;
-
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.boot.test.context.SpringBootTest;
-import org.springframework.test.context.junit4.SpringRunner;
-
-@RunWith(SpringRunner.class)
-@SpringBootTest
-public class ApplicationTests {
-
- @Test
- public void contextLoads() {
- }
-
-}
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+package com.microsoft.bot.sample.suggestedactions;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.junit4.SpringRunner;
+
+@RunWith(SpringRunner.class)
+@SpringBootTest
+public class ApplicationTest {
+
+ @Test
+ public void contextLoads() {
+ }
+
+}
diff --git a/samples/16.proactive-messages/pom.xml b/samples/16.proactive-messages/pom.xml
index 2c38c8c8b..d57074b94 100644
--- a/samples/16.proactive-messages/pom.xml
+++ b/samples/16.proactive-messages/pom.xml
@@ -57,6 +57,11 @@
4.13.1
test
+
+ org.junit.vintage
+ junit-vintage-engine
+ test
+
org.slf4j
diff --git a/samples/16.proactive-messages/src/test/java/com/microsoft/bot/sample/proactive/ApplicationTests.java b/samples/16.proactive-messages/src/test/java/com/microsoft/bot/sample/proactive/ApplicationTest.java
similarity index 89%
rename from samples/16.proactive-messages/src/test/java/com/microsoft/bot/sample/proactive/ApplicationTests.java
rename to samples/16.proactive-messages/src/test/java/com/microsoft/bot/sample/proactive/ApplicationTest.java
index 865705c44..5e8974cb9 100644
--- a/samples/16.proactive-messages/src/test/java/com/microsoft/bot/sample/proactive/ApplicationTests.java
+++ b/samples/16.proactive-messages/src/test/java/com/microsoft/bot/sample/proactive/ApplicationTest.java
@@ -1,19 +1,19 @@
-// Copyright (c) Microsoft Corporation. All rights reserved.
-// Licensed under the MIT License.
-
-package com.microsoft.bot.sample.proactive;
-
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.boot.test.context.SpringBootTest;
-import org.springframework.test.context.junit4.SpringRunner;
-
-@RunWith(SpringRunner.class)
-@SpringBootTest
-public class ApplicationTests {
-
- @Test
- public void contextLoads() {
- }
-
-}
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+package com.microsoft.bot.sample.proactive;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.junit4.SpringRunner;
+
+@RunWith(SpringRunner.class)
+@SpringBootTest
+public class ApplicationTest {
+
+ @Test
+ public void contextLoads() {
+ }
+
+}
diff --git a/samples/45.state-management/pom.xml b/samples/45.state-management/pom.xml
index 6b6809f6a..810b2ff63 100644
--- a/samples/45.state-management/pom.xml
+++ b/samples/45.state-management/pom.xml
@@ -56,6 +56,11 @@
4.13.1
test
+
+ org.junit.vintage
+ junit-vintage-engine
+ test
+
org.slf4j
diff --git a/samples/45.state-management/src/test/java/com/microsoft/bot/sample/statemanagement/ApplicationTests.java b/samples/45.state-management/src/test/java/com/microsoft/bot/sample/statemanagement/ApplicationTest.java
similarity index 89%
rename from samples/45.state-management/src/test/java/com/microsoft/bot/sample/statemanagement/ApplicationTests.java
rename to samples/45.state-management/src/test/java/com/microsoft/bot/sample/statemanagement/ApplicationTest.java
index 5df365585..0702c93b6 100644
--- a/samples/45.state-management/src/test/java/com/microsoft/bot/sample/statemanagement/ApplicationTests.java
+++ b/samples/45.state-management/src/test/java/com/microsoft/bot/sample/statemanagement/ApplicationTest.java
@@ -1,19 +1,19 @@
-// Copyright (c) Microsoft Corporation. All rights reserved.
-// Licensed under the MIT License.
-
-package com.microsoft.bot.sample.statemanagement;
-
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.boot.test.context.SpringBootTest;
-import org.springframework.test.context.junit4.SpringRunner;
-
-@RunWith(SpringRunner.class)
-@SpringBootTest
-public class ApplicationTests {
-
- @Test
- public void contextLoads() {
- }
-
-}
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+package com.microsoft.bot.sample.statemanagement;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.junit4.SpringRunner;
+
+@RunWith(SpringRunner.class)
+@SpringBootTest
+public class ApplicationTest {
+
+ @Test
+ public void contextLoads() {
+ }
+
+}
diff --git a/samples/47.inspection/pom.xml b/samples/47.inspection/pom.xml
index 6f0912c2b..c9234069f 100644
--- a/samples/47.inspection/pom.xml
+++ b/samples/47.inspection/pom.xml
@@ -57,6 +57,11 @@
2.4.0
test
+
+ org.junit.vintage
+ junit-vintage-engine
+ test
+
org.slf4j
diff --git a/samples/47.inspection/src/test/java/com/microsoft/bot/sample/inspection/ApplicationTests.java b/samples/47.inspection/src/test/java/com/microsoft/bot/sample/inspection/ApplicationTest.java
similarity index 89%
rename from samples/47.inspection/src/test/java/com/microsoft/bot/sample/inspection/ApplicationTests.java
rename to samples/47.inspection/src/test/java/com/microsoft/bot/sample/inspection/ApplicationTest.java
index 7bbace3ad..4b995f565 100644
--- a/samples/47.inspection/src/test/java/com/microsoft/bot/sample/inspection/ApplicationTests.java
+++ b/samples/47.inspection/src/test/java/com/microsoft/bot/sample/inspection/ApplicationTest.java
@@ -1,19 +1,19 @@
-// Copyright (c) Microsoft Corporation. All rights reserved.
-// Licensed under the MIT License.
-
-package com.microsoft.bot.sample.inspection;
-
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.boot.test.context.SpringBootTest;
-import org.springframework.test.context.junit4.SpringRunner;
-
-@RunWith(SpringRunner.class)
-@SpringBootTest
-public class ApplicationTests {
-
- @Test
- public void contextLoads() {
- }
-
-}
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+package com.microsoft.bot.sample.inspection;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.junit4.SpringRunner;
+
+@RunWith(SpringRunner.class)
+@SpringBootTest
+public class ApplicationTest {
+
+ @Test
+ public void contextLoads() {
+ }
+
+}
diff --git a/samples/50.teams-messaging-extensions-search/pom.xml b/samples/50.teams-messaging-extensions-search/pom.xml
index a2ea70374..a0f0cee95 100644
--- a/samples/50.teams-messaging-extensions-search/pom.xml
+++ b/samples/50.teams-messaging-extensions-search/pom.xml
@@ -57,6 +57,11 @@
2.4.0
test
+
+ org.junit.vintage
+ junit-vintage-engine
+ test
+
org.slf4j
diff --git a/samples/50.teams-messaging-extensions-search/src/test/java/com/microsoft/bot/sample/teamssearch/ApplicationTests.java b/samples/50.teams-messaging-extensions-search/src/test/java/com/microsoft/bot/sample/teamssearch/ApplicationTest.java
similarity index 89%
rename from samples/50.teams-messaging-extensions-search/src/test/java/com/microsoft/bot/sample/teamssearch/ApplicationTests.java
rename to samples/50.teams-messaging-extensions-search/src/test/java/com/microsoft/bot/sample/teamssearch/ApplicationTest.java
index 43ab7a1b2..38d711971 100644
--- a/samples/50.teams-messaging-extensions-search/src/test/java/com/microsoft/bot/sample/teamssearch/ApplicationTests.java
+++ b/samples/50.teams-messaging-extensions-search/src/test/java/com/microsoft/bot/sample/teamssearch/ApplicationTest.java
@@ -1,19 +1,19 @@
-// Copyright (c) Microsoft Corporation. All rights reserved.
-// Licensed under the MIT License.
-
-package com.microsoft.bot.sample.teamssearch;
-
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.boot.test.context.SpringBootTest;
-import org.springframework.test.context.junit4.SpringRunner;
-
-@RunWith(SpringRunner.class)
-@SpringBootTest
-public class ApplicationTests {
-
- @Test
- public void contextLoads() {
- }
-
-}
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+package com.microsoft.bot.sample.teamssearch;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.junit4.SpringRunner;
+
+@RunWith(SpringRunner.class)
+@SpringBootTest
+public class ApplicationTest {
+
+ @Test
+ public void contextLoads() {
+ }
+
+}
diff --git a/samples/51.teams-messaging-extensions-action/pom.xml b/samples/51.teams-messaging-extensions-action/pom.xml
index 1e176b13f..7c1bcf328 100644
--- a/samples/51.teams-messaging-extensions-action/pom.xml
+++ b/samples/51.teams-messaging-extensions-action/pom.xml
@@ -57,6 +57,11 @@
2.4.0
test
+
+ org.junit.vintage
+ junit-vintage-engine
+ test
+
org.slf4j
diff --git a/samples/51.teams-messaging-extensions-action/src/test/java/com/microsoft/bot/sample/teamsaction/ApplicationTests.java b/samples/51.teams-messaging-extensions-action/src/test/java/com/microsoft/bot/sample/teamsaction/ApplicationTest.java
similarity index 89%
rename from samples/51.teams-messaging-extensions-action/src/test/java/com/microsoft/bot/sample/teamsaction/ApplicationTests.java
rename to samples/51.teams-messaging-extensions-action/src/test/java/com/microsoft/bot/sample/teamsaction/ApplicationTest.java
index aa0503096..b7da9a55e 100644
--- a/samples/51.teams-messaging-extensions-action/src/test/java/com/microsoft/bot/sample/teamsaction/ApplicationTests.java
+++ b/samples/51.teams-messaging-extensions-action/src/test/java/com/microsoft/bot/sample/teamsaction/ApplicationTest.java
@@ -1,19 +1,19 @@
-// Copyright (c) Microsoft Corporation. All rights reserved.
-// Licensed under the MIT License.
-
-package com.microsoft.bot.sample.teamsaction;
-
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.boot.test.context.SpringBootTest;
-import org.springframework.test.context.junit4.SpringRunner;
-
-@RunWith(SpringRunner.class)
-@SpringBootTest
-public class ApplicationTests {
-
- @Test
- public void contextLoads() {
- }
-
-}
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+package com.microsoft.bot.sample.teamsaction;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.junit4.SpringRunner;
+
+@RunWith(SpringRunner.class)
+@SpringBootTest
+public class ApplicationTest {
+
+ @Test
+ public void contextLoads() {
+ }
+
+}
diff --git a/samples/52.teams-messaging-extensions-search-auth-config/pom.xml b/samples/52.teams-messaging-extensions-search-auth-config/pom.xml
index d477d6420..75875b517 100644
--- a/samples/52.teams-messaging-extensions-search-auth-config/pom.xml
+++ b/samples/52.teams-messaging-extensions-search-auth-config/pom.xml
@@ -62,6 +62,11 @@
2.4.0
test
+
+ org.junit.vintage
+ junit-vintage-engine
+ test
+
org.slf4j
diff --git a/samples/52.teams-messaging-extensions-search-auth-config/src/test/java/com/microsoft/bot/sample/teamssearchauth/ApplicationTests.java b/samples/52.teams-messaging-extensions-search-auth-config/src/test/java/com/microsoft/bot/sample/teamssearchauth/ApplicationTest.java
similarity index 89%
rename from samples/52.teams-messaging-extensions-search-auth-config/src/test/java/com/microsoft/bot/sample/teamssearchauth/ApplicationTests.java
rename to samples/52.teams-messaging-extensions-search-auth-config/src/test/java/com/microsoft/bot/sample/teamssearchauth/ApplicationTest.java
index 01c209f17..5bb912daf 100644
--- a/samples/52.teams-messaging-extensions-search-auth-config/src/test/java/com/microsoft/bot/sample/teamssearchauth/ApplicationTests.java
+++ b/samples/52.teams-messaging-extensions-search-auth-config/src/test/java/com/microsoft/bot/sample/teamssearchauth/ApplicationTest.java
@@ -1,19 +1,19 @@
-// Copyright (c) Microsoft Corporation. All rights reserved.
-// Licensed under the MIT License.
-
-package com.microsoft.bot.sample.teamssearchauth;
-
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.boot.test.context.SpringBootTest;
-import org.springframework.test.context.junit4.SpringRunner;
-
-@RunWith(SpringRunner.class)
-@SpringBootTest
-public class ApplicationTests {
-
- @Test
- public void contextLoads() {
- }
-
-}
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+package com.microsoft.bot.sample.teamssearchauth;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.junit4.SpringRunner;
+
+@RunWith(SpringRunner.class)
+@SpringBootTest
+public class ApplicationTest {
+
+ @Test
+ public void contextLoads() {
+ }
+
+}
diff --git a/samples/53.teams-messaging-extensions-action-preview/pom.xml b/samples/53.teams-messaging-extensions-action-preview/pom.xml
index ac9a5c38b..520a821ea 100644
--- a/samples/53.teams-messaging-extensions-action-preview/pom.xml
+++ b/samples/53.teams-messaging-extensions-action-preview/pom.xml
@@ -57,6 +57,11 @@
2.4.0
test
+
+ org.junit.vintage
+ junit-vintage-engine
+ test
+
org.slf4j
diff --git a/samples/53.teams-messaging-extensions-action-preview/src/test/java/com/microsoft/bot/sample/teamsactionpreview/ApplicationTests.java b/samples/53.teams-messaging-extensions-action-preview/src/test/java/com/microsoft/bot/sample/teamsactionpreview/ApplicationTest.java
similarity index 89%
rename from samples/53.teams-messaging-extensions-action-preview/src/test/java/com/microsoft/bot/sample/teamsactionpreview/ApplicationTests.java
rename to samples/53.teams-messaging-extensions-action-preview/src/test/java/com/microsoft/bot/sample/teamsactionpreview/ApplicationTest.java
index 68f70f1e7..b519a8d0d 100644
--- a/samples/53.teams-messaging-extensions-action-preview/src/test/java/com/microsoft/bot/sample/teamsactionpreview/ApplicationTests.java
+++ b/samples/53.teams-messaging-extensions-action-preview/src/test/java/com/microsoft/bot/sample/teamsactionpreview/ApplicationTest.java
@@ -1,19 +1,19 @@
-// Copyright (c) Microsoft Corporation. All rights reserved.
-// Licensed under the MIT License.
-
-package com.microsoft.bot.sample.teamsactionpreview;
-
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.boot.test.context.SpringBootTest;
-import org.springframework.test.context.junit4.SpringRunner;
-
-@RunWith(SpringRunner.class)
-@SpringBootTest
-public class ApplicationTests {
-
- @Test
- public void contextLoads() {
- }
-
-}
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+package com.microsoft.bot.sample.teamsactionpreview;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.junit4.SpringRunner;
+
+@RunWith(SpringRunner.class)
+@SpringBootTest
+public class ApplicationTest {
+
+ @Test
+ public void contextLoads() {
+ }
+
+}
diff --git a/samples/54.teams-task-module/pom.xml b/samples/54.teams-task-module/pom.xml
index b8b781653..df0eb0454 100644
--- a/samples/54.teams-task-module/pom.xml
+++ b/samples/54.teams-task-module/pom.xml
@@ -57,6 +57,12 @@
2.4.0
test
+
+ org.junit.vintage
+ junit-vintage-engine
+ test
+
+
org.slf4j
slf4j-api
diff --git a/samples/54.teams-task-module/src/test/java/com/microsoft/bot/sample/teamstaskmodule/ApplicationTests.java b/samples/54.teams-task-module/src/test/java/com/microsoft/bot/sample/teamstaskmodule/ApplicationTest.java
similarity index 89%
rename from samples/54.teams-task-module/src/test/java/com/microsoft/bot/sample/teamstaskmodule/ApplicationTests.java
rename to samples/54.teams-task-module/src/test/java/com/microsoft/bot/sample/teamstaskmodule/ApplicationTest.java
index 87a369897..299bf9f73 100644
--- a/samples/54.teams-task-module/src/test/java/com/microsoft/bot/sample/teamstaskmodule/ApplicationTests.java
+++ b/samples/54.teams-task-module/src/test/java/com/microsoft/bot/sample/teamstaskmodule/ApplicationTest.java
@@ -1,19 +1,19 @@
-// Copyright (c) Microsoft Corporation. All rights reserved.
-// Licensed under the MIT License.
-
-package com.microsoft.bot.sample.teamstaskmodule;
-
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.boot.test.context.SpringBootTest;
-import org.springframework.test.context.junit4.SpringRunner;
-
-@RunWith(SpringRunner.class)
-@SpringBootTest
-public class ApplicationTests {
-
- @Test
- public void contextLoads() {
- }
-
-}
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+package com.microsoft.bot.sample.teamstaskmodule;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.junit4.SpringRunner;
+
+@RunWith(SpringRunner.class)
+@SpringBootTest
+public class ApplicationTest {
+
+ @Test
+ public void contextLoads() {
+ }
+
+}
diff --git a/samples/55.teams-link-unfurling/pom.xml b/samples/55.teams-link-unfurling/pom.xml
index 43750d1b2..31149dbf3 100644
--- a/samples/55.teams-link-unfurling/pom.xml
+++ b/samples/55.teams-link-unfurling/pom.xml
@@ -57,6 +57,11 @@
2.4.0
test
+
+ org.junit.vintage
+ junit-vintage-engine
+ test
+
org.slf4j
diff --git a/samples/55.teams-link-unfurling/src/test/java/com/microsoft/bot/sample/teamsunfurl/ApplicationTests.java b/samples/55.teams-link-unfurling/src/test/java/com/microsoft/bot/sample/teamsunfurl/ApplicationTest.java
similarity index 89%
rename from samples/55.teams-link-unfurling/src/test/java/com/microsoft/bot/sample/teamsunfurl/ApplicationTests.java
rename to samples/55.teams-link-unfurling/src/test/java/com/microsoft/bot/sample/teamsunfurl/ApplicationTest.java
index b653c4e76..82d21bd8f 100644
--- a/samples/55.teams-link-unfurling/src/test/java/com/microsoft/bot/sample/teamsunfurl/ApplicationTests.java
+++ b/samples/55.teams-link-unfurling/src/test/java/com/microsoft/bot/sample/teamsunfurl/ApplicationTest.java
@@ -1,19 +1,19 @@
-// Copyright (c) Microsoft Corporation. All rights reserved.
-// Licensed under the MIT License.
-
-package com.microsoft.bot.sample.teamsunfurl;
-
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.boot.test.context.SpringBootTest;
-import org.springframework.test.context.junit4.SpringRunner;
-
-@RunWith(SpringRunner.class)
-@SpringBootTest
-public class ApplicationTests {
-
- @Test
- public void contextLoads() {
- }
-
-}
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+package com.microsoft.bot.sample.teamsunfurl;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.junit4.SpringRunner;
+
+@RunWith(SpringRunner.class)
+@SpringBootTest
+public class ApplicationTest {
+
+ @Test
+ public void contextLoads() {
+ }
+
+}
diff --git a/samples/56.teams-file-upload/pom.xml b/samples/56.teams-file-upload/pom.xml
index b9c97ec68..8561fb30c 100644
--- a/samples/56.teams-file-upload/pom.xml
+++ b/samples/56.teams-file-upload/pom.xml
@@ -57,6 +57,11 @@
2.4.0
test
+
+ org.junit.vintage
+ junit-vintage-engine
+ test
+
org.slf4j
diff --git a/samples/56.teams-file-upload/src/test/java/com/microsoft/bot/sample/teamsfileupload/ApplicationTests.java b/samples/56.teams-file-upload/src/test/java/com/microsoft/bot/sample/teamsfileupload/ApplicationTest.java
similarity index 89%
rename from samples/56.teams-file-upload/src/test/java/com/microsoft/bot/sample/teamsfileupload/ApplicationTests.java
rename to samples/56.teams-file-upload/src/test/java/com/microsoft/bot/sample/teamsfileupload/ApplicationTest.java
index cdd838d56..11a2cc7f3 100644
--- a/samples/56.teams-file-upload/src/test/java/com/microsoft/bot/sample/teamsfileupload/ApplicationTests.java
+++ b/samples/56.teams-file-upload/src/test/java/com/microsoft/bot/sample/teamsfileupload/ApplicationTest.java
@@ -1,19 +1,19 @@
-// Copyright (c) Microsoft Corporation. All rights reserved.
-// Licensed under the MIT License.
-
-package com.microsoft.bot.sample.teamsfileupload;
-
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.boot.test.context.SpringBootTest;
-import org.springframework.test.context.junit4.SpringRunner;
-
-@RunWith(SpringRunner.class)
-@SpringBootTest
-public class ApplicationTests {
-
- @Test
- public void contextLoads() {
- }
-
-}
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+package com.microsoft.bot.sample.teamsfileupload;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.junit4.SpringRunner;
+
+@RunWith(SpringRunner.class)
+@SpringBootTest
+public class ApplicationTest {
+
+ @Test
+ public void contextLoads() {
+ }
+
+}
diff --git a/samples/57.teams-conversation-bot/pom.xml b/samples/57.teams-conversation-bot/pom.xml
index dff36819f..b89168a1f 100644
--- a/samples/57.teams-conversation-bot/pom.xml
+++ b/samples/57.teams-conversation-bot/pom.xml
@@ -57,6 +57,11 @@
2.4.0
test
+
+ org.junit.vintage
+ junit-vintage-engine
+ test
+
org.slf4j
diff --git a/samples/57.teams-conversation-bot/src/test/java/com/microsoft/bot/sample/teamsconversation/ApplicationTests.java b/samples/57.teams-conversation-bot/src/test/java/com/microsoft/bot/sample/teamsconversation/ApplicationTest.java
similarity index 89%
rename from samples/57.teams-conversation-bot/src/test/java/com/microsoft/bot/sample/teamsconversation/ApplicationTests.java
rename to samples/57.teams-conversation-bot/src/test/java/com/microsoft/bot/sample/teamsconversation/ApplicationTest.java
index 9b98c3963..03d5ab006 100644
--- a/samples/57.teams-conversation-bot/src/test/java/com/microsoft/bot/sample/teamsconversation/ApplicationTests.java
+++ b/samples/57.teams-conversation-bot/src/test/java/com/microsoft/bot/sample/teamsconversation/ApplicationTest.java
@@ -1,19 +1,19 @@
-// Copyright (c) Microsoft Corporation. All rights reserved.
-// Licensed under the MIT License.
-
-package com.microsoft.bot.sample.teamsconversation;
-
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.boot.test.context.SpringBootTest;
-import org.springframework.test.context.junit4.SpringRunner;
-
-@RunWith(SpringRunner.class)
-@SpringBootTest
-public class ApplicationTests {
-
- @Test
- public void contextLoads() {
- }
-
-}
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+package com.microsoft.bot.sample.teamsconversation;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.junit4.SpringRunner;
+
+@RunWith(SpringRunner.class)
+@SpringBootTest
+public class ApplicationTest {
+
+ @Test
+ public void contextLoads() {
+ }
+
+}
diff --git a/samples/58.teams-start-new-thread-in-channel/pom.xml b/samples/58.teams-start-new-thread-in-channel/pom.xml
index 3a79037ed..3967d715e 100644
--- a/samples/58.teams-start-new-thread-in-channel/pom.xml
+++ b/samples/58.teams-start-new-thread-in-channel/pom.xml
@@ -57,6 +57,12 @@
2.4.0
test
+
+ org.junit.vintage
+ junit-vintage-engine
+ test
+
+
org.slf4j
slf4j-api
diff --git a/samples/58.teams-start-new-thread-in-channel/src/test/java/com/microsoft/bot/sample/teamsstartnewthread/ApplicationTests.java b/samples/58.teams-start-new-thread-in-channel/src/test/java/com/microsoft/bot/sample/teamsstartnewthread/ApplicationTest.java
similarity index 89%
rename from samples/58.teams-start-new-thread-in-channel/src/test/java/com/microsoft/bot/sample/teamsstartnewthread/ApplicationTests.java
rename to samples/58.teams-start-new-thread-in-channel/src/test/java/com/microsoft/bot/sample/teamsstartnewthread/ApplicationTest.java
index 85964b3ba..2ff78e9ba 100644
--- a/samples/58.teams-start-new-thread-in-channel/src/test/java/com/microsoft/bot/sample/teamsstartnewthread/ApplicationTests.java
+++ b/samples/58.teams-start-new-thread-in-channel/src/test/java/com/microsoft/bot/sample/teamsstartnewthread/ApplicationTest.java
@@ -1,19 +1,19 @@
-// Copyright (c) Microsoft Corporation. All rights reserved.
-// Licensed under the MIT License.
-
-package com.microsoft.bot.sample.teamsstartnewthread;
-
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.boot.test.context.SpringBootTest;
-import org.springframework.test.context.junit4.SpringRunner;
-
-@RunWith(SpringRunner.class)
-@SpringBootTest
-public class ApplicationTests {
-
- @Test
- public void contextLoads() {
- }
-
-}
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+
+package com.microsoft.bot.sample.teamsstartnewthread;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.junit4.SpringRunner;
+
+@RunWith(SpringRunner.class)
+@SpringBootTest
+public class ApplicationTest {
+
+ @Test
+ public void contextLoads() {
+ }
+
+}