This commit is contained in:
jamesagnew 2015-06-21 00:12:33 -04:00
parent 7acacda758
commit 6907009cab
2 changed files with 6 additions and 5 deletions

View File

@ -301,6 +301,7 @@
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<configuration> <configuration>
<runOrder>alphabetical</runOrder> <runOrder>alphabetical</runOrder>
<reuseForks>false</reuseForks>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>

View File

@ -10,11 +10,11 @@ public class BaseJpaTest {
@AfterClass @AfterClass
public static void afterClassShutdownDerby() throws SQLException { public static void afterClassShutdownDerby() throws SQLException {
try { // try {
DriverManager.getConnection("jdbc:derby:memory:myUnitTestDB;drop=true"); // DriverManager.getConnection("jdbc:derby:memory:myUnitTestDB;drop=true");
} catch (SQLNonTransientConnectionException e) { // } catch (SQLNonTransientConnectionException e) {
// expected.. for some reason.... // // expected.. for some reason....
} // }
} }
} }