This commit is contained in:
Johnny Lim 2016-09-19 13:52:43 +09:00 committed by Phillip Webb
parent e239e64cb1
commit a994b11a73
4 changed files with 5 additions and 5 deletions

View File

@ -3788,7 +3788,7 @@ providers (in this order):
* <<boot-features-caching-provider-generic,Generic>>
* <<boot-features-caching-provider-jcache,JCache (JSR-107)>> (EhCache 3, Hazelcast,
Infinspan, etc)
Infinispan, etc)
* <<boot-features-caching-provider-ehcache2,EhCache 2.x>>
* <<boot-features-caching-provider-hazelcast,Hazelcast>>
* <<boot-features-caching-provider-infinispan,Infinispan>>

View File

@ -41,7 +41,7 @@ public class AutoConfigureTestDatabaseWithNoDatabaseIntegrationTests {
private ApplicationContext context;
@Test
public void testContextLoades() throws Exception {
public void testContextLoads() throws Exception {
// gh-6897
assertThat(this.context).isNotNull();
assertThat(this.context.getBeanNamesForType(DataSource.class)).isNotEmpty();

View File

@ -61,10 +61,10 @@ public class SpringBootTestContextBootstrapperTests {
BootstrapContext bootstrapContext = mock(BootstrapContext.class);
bootstrapper.setBootstrapContext(bootstrapContext);
given((Class) bootstrapContext.getTestClass()).willReturn(testClass);
CacheAwareContextLoaderDelegate contextLoaderDeleagte = mock(
CacheAwareContextLoaderDelegate contextLoaderDelegate = mock(
CacheAwareContextLoaderDelegate.class);
given(bootstrapContext.getCacheAwareContextLoaderDelegate())
.willReturn(contextLoaderDeleagte);
.willReturn(contextLoaderDelegate);
bootstrapper.buildTestContext();
}

View File

@ -139,7 +139,7 @@ public abstract class AbstractRunMojo extends AbstractDependencyFilterMojo {
private File classesDirectory;
/**
* Flag to indicate if the run processes should be forked. {@code fork } is
* Flag to indicate if the run processes should be forked. {@code fork} is
* automatically enabled if an agent or jvmArguments are specified, or if devtools is
* present.
* @since 1.2