Removed most exception handlers from spring-rest-full (except the ones used in other articles) and moved them to spring-boot-rest
This commit is contained in:
+3
-3
@@ -1,7 +1,7 @@
|
||||
package org.baeldung;
|
||||
|
||||
import org.baeldung.persistence.PersistenceTestSuite;
|
||||
import org.baeldung.web.LiveTestSuite;
|
||||
import org.baeldung.web.LiveTestSuiteLiveTest;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.junit.runners.Suite;
|
||||
|
||||
@@ -9,8 +9,8 @@ import org.junit.runners.Suite;
|
||||
@Suite.SuiteClasses({
|
||||
// @formatter:off
|
||||
PersistenceTestSuite.class
|
||||
,LiveTestSuite.class
|
||||
,LiveTestSuiteLiveTest.class
|
||||
}) //
|
||||
public class TestSuite {
|
||||
public class TestSuiteLiveTest {
|
||||
|
||||
}
|
||||
+1
-1
@@ -10,6 +10,6 @@ import org.junit.runners.Suite;
|
||||
,FooLiveTest.class
|
||||
,FooPageableLiveTest.class
|
||||
}) //
|
||||
public class LiveTestSuite {
|
||||
public class LiveTestSuiteLiveTest {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user