Merge pull request #11394 from dreis2211:fix-behavior-spelling

* pr/11394:
  Align 'behavior' spelling to style guide
pull/11403/head
Stephane Nicoll 7 years ago
commit 7d60d023c7

@ -56,7 +56,7 @@ public abstract class AbstractDevToolsDataSourceAutoConfigurationTests {
DataSourcePropertiesConfiguration.class, DataSourcePropertiesConfiguration.class,
SingleDataSourceConfiguration.class); SingleDataSourceConfiguration.class);
DataSource dataSource = context.getBean(DataSource.class); DataSource dataSource = context.getBean(DataSource.class);
Statement statement = configureDataSourceBehaviour(dataSource); Statement statement = configureDataSourceBehavior(dataSource);
verify(statement, times(0)).execute("SHUTDOWN"); verify(statement, times(0)).execute("SHUTDOWN");
} }
@ -68,7 +68,7 @@ public abstract class AbstractDevToolsDataSourceAutoConfigurationTests {
Collection<DataSource> dataSources = context.getBeansOfType(DataSource.class) Collection<DataSource> dataSources = context.getBeansOfType(DataSource.class)
.values(); .values();
for (DataSource dataSource : dataSources) { for (DataSource dataSource : dataSources) {
Statement statement = configureDataSourceBehaviour(dataSource); Statement statement = configureDataSourceBehavior(dataSource);
verify(statement, times(0)).execute("SHUTDOWN"); verify(statement, times(0)).execute("SHUTDOWN");
} }
} }
@ -86,7 +86,7 @@ public abstract class AbstractDevToolsDataSourceAutoConfigurationTests {
context.close(); context.close();
} }
protected final Statement configureDataSourceBehaviour(DataSource dataSource) protected final Statement configureDataSourceBehavior(DataSource dataSource)
throws SQLException { throws SQLException {
Connection connection = mock(Connection.class); Connection connection = mock(Connection.class);
Statement statement = mock(Statement.class); Statement statement = mock(Statement.class);

@ -46,7 +46,7 @@ public class DevToolsEmbeddedDataSourceAutoConfigurationTests
public void autoConfiguredDataSourceIsNotShutdown() throws SQLException { public void autoConfiguredDataSourceIsNotShutdown() throws SQLException {
ConfigurableApplicationContext context = createContext( ConfigurableApplicationContext context = createContext(
DataSourceAutoConfiguration.class, DataSourceSpyConfiguration.class); DataSourceAutoConfiguration.class, DataSourceSpyConfiguration.class);
Statement statement = configureDataSourceBehaviour( Statement statement = configureDataSourceBehavior(
context.getBean(DataSource.class)); context.getBean(DataSource.class));
context.close(); context.close();
verify(statement, times(0)).execute("SHUTDOWN"); verify(statement, times(0)).execute("SHUTDOWN");

@ -53,7 +53,7 @@ public class DevToolsPooledDataSourceAutoConfigurationTests
public void autoConfiguredInMemoryDataSourceIsShutdown() throws SQLException { public void autoConfiguredInMemoryDataSourceIsShutdown() throws SQLException {
ConfigurableApplicationContext context = createContext( ConfigurableApplicationContext context = createContext(
DataSourceAutoConfiguration.class, DataSourceSpyConfiguration.class); DataSourceAutoConfiguration.class, DataSourceSpyConfiguration.class);
Statement statement = configureDataSourceBehaviour( Statement statement = configureDataSourceBehavior(
context.getBean(DataSource.class)); context.getBean(DataSource.class));
context.close(); context.close();
verify(statement).execute("SHUTDOWN"); verify(statement).execute("SHUTDOWN");
@ -63,7 +63,7 @@ public class DevToolsPooledDataSourceAutoConfigurationTests
public void autoConfiguredExternalDataSourceIsNotShutdown() throws SQLException { public void autoConfiguredExternalDataSourceIsNotShutdown() throws SQLException {
ConfigurableApplicationContext context = createContext("org.postgresql.Driver", ConfigurableApplicationContext context = createContext("org.postgresql.Driver",
DataSourceAutoConfiguration.class, DataSourceSpyConfiguration.class); DataSourceAutoConfiguration.class, DataSourceSpyConfiguration.class);
Statement statement = configureDataSourceBehaviour( Statement statement = configureDataSourceBehavior(
context.getBean(DataSource.class)); context.getBean(DataSource.class));
context.close(); context.close();
verify(statement, times(0)).execute("SHUTDOWN"); verify(statement, times(0)).execute("SHUTDOWN");
@ -74,7 +74,7 @@ public class DevToolsPooledDataSourceAutoConfigurationTests
ConfigurableApplicationContext context = createContext("org.h2.Driver", ConfigurableApplicationContext context = createContext("org.h2.Driver",
"jdbc:h2:hsql://localhost", DataSourceAutoConfiguration.class, "jdbc:h2:hsql://localhost", DataSourceAutoConfiguration.class,
DataSourceSpyConfiguration.class); DataSourceSpyConfiguration.class);
Statement statement = configureDataSourceBehaviour( Statement statement = configureDataSourceBehavior(
context.getBean(DataSource.class)); context.getBean(DataSource.class));
context.close(); context.close();
verify(statement, times(0)).execute("SHUTDOWN"); verify(statement, times(0)).execute("SHUTDOWN");
@ -85,7 +85,7 @@ public class DevToolsPooledDataSourceAutoConfigurationTests
ConfigurableApplicationContext context = createContext("org.h2.Driver", ConfigurableApplicationContext context = createContext("org.h2.Driver",
"jdbc:h2:mem:test", DataSourceAutoConfiguration.class, "jdbc:h2:mem:test", DataSourceAutoConfiguration.class,
DataSourceSpyConfiguration.class); DataSourceSpyConfiguration.class);
Statement statement = configureDataSourceBehaviour( Statement statement = configureDataSourceBehavior(
context.getBean(DataSource.class)); context.getBean(DataSource.class));
context.close(); context.close();
verify(statement, times(1)).execute("SHUTDOWN"); verify(statement, times(1)).execute("SHUTDOWN");
@ -96,7 +96,7 @@ public class DevToolsPooledDataSourceAutoConfigurationTests
ConfigurableApplicationContext context = createContext("org.hsqldb.jdbcDriver", ConfigurableApplicationContext context = createContext("org.hsqldb.jdbcDriver",
"jdbc:hsqldb:hsql://localhost", DataSourceAutoConfiguration.class, "jdbc:hsqldb:hsql://localhost", DataSourceAutoConfiguration.class,
DataSourceSpyConfiguration.class); DataSourceSpyConfiguration.class);
Statement statement = configureDataSourceBehaviour( Statement statement = configureDataSourceBehavior(
context.getBean(DataSource.class)); context.getBean(DataSource.class));
context.close(); context.close();
verify(statement, times(0)).execute("SHUTDOWN"); verify(statement, times(0)).execute("SHUTDOWN");
@ -107,7 +107,7 @@ public class DevToolsPooledDataSourceAutoConfigurationTests
ConfigurableApplicationContext context = createContext("org.hsqldb.jdbcDriver", ConfigurableApplicationContext context = createContext("org.hsqldb.jdbcDriver",
"jdbc:hsqldb:mem:test", DataSourceAutoConfiguration.class, "jdbc:hsqldb:mem:test", DataSourceAutoConfiguration.class,
DataSourceSpyConfiguration.class); DataSourceSpyConfiguration.class);
Statement statement = configureDataSourceBehaviour( Statement statement = configureDataSourceBehavior(
context.getBean(DataSource.class)); context.getBean(DataSource.class));
context.close(); context.close();
verify(statement, times(1)).execute("SHUTDOWN"); verify(statement, times(1)).execute("SHUTDOWN");
@ -118,7 +118,7 @@ public class DevToolsPooledDataSourceAutoConfigurationTests
ConfigurableApplicationContext context = createContext( ConfigurableApplicationContext context = createContext(
"org.apache.derby.jdbc.ClientDriver", "jdbc:derby://localhost", "org.apache.derby.jdbc.ClientDriver", "jdbc:derby://localhost",
DataSourceAutoConfiguration.class, DataSourceSpyConfiguration.class); DataSourceAutoConfiguration.class, DataSourceSpyConfiguration.class);
Statement statement = configureDataSourceBehaviour( Statement statement = configureDataSourceBehavior(
context.getBean(DataSource.class)); context.getBean(DataSource.class));
context.close(); context.close();
verify(statement, times(0)).execute("SHUTDOWN"); verify(statement, times(0)).execute("SHUTDOWN");
@ -129,7 +129,7 @@ public class DevToolsPooledDataSourceAutoConfigurationTests
ConfigurableApplicationContext context = createContext( ConfigurableApplicationContext context = createContext(
"org.apache.derby.jdbc.EmbeddedDriver", "jdbc:derby:memory:test", "org.apache.derby.jdbc.EmbeddedDriver", "jdbc:derby:memory:test",
DataSourceAutoConfiguration.class, DataSourceSpyConfiguration.class); DataSourceAutoConfiguration.class, DataSourceSpyConfiguration.class);
Statement statement = configureDataSourceBehaviour( Statement statement = configureDataSourceBehavior(
context.getBean(DataSource.class)); context.getBean(DataSource.class));
context.close(); context.close();
verify(statement, times(1)).execute("SHUTDOWN"); verify(statement, times(1)).execute("SHUTDOWN");

@ -81,7 +81,7 @@ class DuplicateJsonObjectContextCustomizerFactory implements ContextCustomizerFa
message.append("\t" + jsonObject + "\n"); message.append("\t" + jsonObject + "\n");
} }
message.append("\nYou may wish to exclude one of them to ensure" message.append("\nYou may wish to exclude one of them to ensure"
+ " predictable runtime behaviour\n"); + " predictable runtime behavior\n");
this.logger.warn(message); this.logger.warn(message);
} }

@ -7,7 +7,7 @@
----- -----
By default, the <<<repackage>>> goal will replace the original artifact with the By default, the <<<repackage>>> goal will replace the original artifact with the
repackaged one. That's a sane behaviour for modules that represent an app but if repackaged one. That's a sane behavior for modules that represent an app but if
your module is used as a dependency of another module, you need to provide a your module is used as a dependency of another module, you need to provide a
classifier for the repackaged one. classifier for the repackaged one.

@ -95,7 +95,7 @@ public class ServletWebServerApplicationContext extends GenericWebApplicationCon
/** /**
* Constant value for the DispatcherServlet bean name. A Servlet bean with this name * Constant value for the DispatcherServlet bean name. A Servlet bean with this name
* is deemed to be the "main" servlet and is automatically given a mapping of "/" by * is deemed to be the "main" servlet and is automatically given a mapping of "/" by
* default. To change the default behaviour you can use a * default. To change the default behavior you can use a
* {@link ServletRegistrationBean} or a different bean name. * {@link ServletRegistrationBean} or a different bean name.
*/ */
public static final String DISPATCHER_SERVLET_NAME = "dispatcherServlet"; public static final String DISPATCHER_SERVLET_NAME = "dispatcherServlet";

Loading…
Cancel
Save