Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
0f6b76cf
Commit
0f6b76cf
authored
Apr 06, 2016
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5615 from Johnny Lim
* gh-5615: Remove a duplicate test
parents
d138c1a6
ec83d974
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
13 deletions
+0
-13
DevToolsDataSourceAutoConfigurationTests.java
...toconfigure/DevToolsDataSourceAutoConfigurationTests.java
+0
-13
No files found.
spring-boot-devtools/src/test/java/org/springframework/boot/devtools/autoconfigure/DevToolsDataSourceAutoConfigurationTests.java
View file @
0f6b76cf
...
@@ -68,19 +68,6 @@ public class DevToolsDataSourceAutoConfigurationTests {
...
@@ -68,19 +68,6 @@ public class DevToolsDataSourceAutoConfigurationTests {
verify
(
dataSource
,
times
(
0
)).
getConnection
();
verify
(
dataSource
,
times
(
0
)).
getConnection
();
}
}
@Test
public
void
nonEmbeddedInMemoryDatabaseIsShutDown
()
throws
SQLException
{
ConfigurableApplicationContext
context
=
createContextWithDriver
(
"org.h2.Driver"
,
DataSourceConfiguration
.
class
);
DataSource
dataSource
=
context
.
getBean
(
DataSource
.
class
);
Connection
connection
=
mock
(
Connection
.
class
);
given
(
dataSource
.
getConnection
()).
willReturn
(
connection
);
Statement
statement
=
mock
(
Statement
.
class
);
given
(
connection
.
createStatement
()).
willReturn
(
statement
);
context
.
close
();
verify
(
statement
).
execute
(
"SHUTDOWN"
);
}
@Test
@Test
public
void
nonEmbeddedInMemoryDatabaseConfiguredWithDriverIsShutDown
()
public
void
nonEmbeddedInMemoryDatabaseConfiguredWithDriverIsShutDown
()
throws
SQLException
{
throws
SQLException
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment