-
-
-
diff --git a/spring-boot-samples/spring-boot-sample-secure-sso/src/test/java/sample/secure/sso/SampleOAuth2SsoApplicationTests.java b/spring-boot-samples/spring-boot-sample-secure-sso/src/test/java/sample/secure/sso/SampleOAuth2SsoApplicationTests.java
deleted file mode 100644
index 6a2be2e28f5..00000000000
--- a/spring-boot-samples/spring-boot-sample-secure-sso/src/test/java/sample/secure/sso/SampleOAuth2SsoApplicationTests.java
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * Copyright 2012-2015 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package sample.secure.sso;
-
-import org.junit.Before;
-import org.junit.Test;
-import org.junit.runner.RunWith;
-
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.boot.test.SpringApplicationConfiguration;
-import org.springframework.boot.test.WebIntegrationTest;
-import org.springframework.security.core.context.SecurityContextHolder;
-import org.springframework.security.web.FilterChainProxy;
-import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
-import org.springframework.test.web.servlet.MockMvc;
-import org.springframework.web.context.WebApplicationContext;
-
-import static org.hamcrest.CoreMatchers.containsString;
-import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
-import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.header;
-import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
-import static org.springframework.test.web.servlet.setup.MockMvcBuilders.webAppContextSetup;
-
-/**
- * Series of automated integration tests to verify proper behavior of auto-configured,
- * OAuth2-secured system
- *
- * @author Greg Turnquist
- */
-@RunWith(SpringJUnit4ClassRunner.class)
-@SpringApplicationConfiguration(SampleOAuth2SsoApplication.class)
-@WebIntegrationTest(randomPort = true)
-public class SampleOAuth2SsoApplicationTests {
-
- @Autowired
- WebApplicationContext context;
-
- @Autowired
- FilterChainProxy filterChain;
-
- private MockMvc mvc;
-
- @Before
- public void setUp() {
- this.mvc = webAppContextSetup(this.context).addFilters(this.filterChain).build();
- SecurityContextHolder.clearContext();
- }
-
- @Test
- public void everythingIsSecuredByDefault() throws Exception {
- this.mvc.perform(get("/")).andExpect(status().isFound()).andExpect(
- header().string("location", containsString("localhost/login")));
- }
-
-}