Move TestContextEventType enumeration to the org.springframework.data.gemfire.tests.extensions.spring.test.context.event package.

This commit is contained in:
John Blum
2021-03-22 19:42:38 -07:00
parent dfd0d8e324
commit 59488b0a54
4 changed files with 19 additions and 19 deletions

View File

@@ -13,7 +13,7 @@
* or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package org.springframework.data.gemfire.tests.mock.test.context.event;
package org.springframework.data.gemfire.tests.extensions.spring.test.context.event;
import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.Mockito.mock;
@@ -38,11 +38,11 @@ import org.springframework.test.context.event.TestContextEvent;
* @author John Blum
* @see org.junit.Test
* @see org.mockito.Mockito
* @see org.springframework.data.gemfire.tests.mock.test.context.event.TestContextEventType
* @see org.springframework.data.gemfire.tests.extensions.spring.test.context.event.TestContextEventType
* @see org.springframework.test.context.event.TestContextEvent
* @since 0.0.16
*/
public class TestContextEventTypeUnitTest {
public class TestContextEventTypeUnitTests {
@Test
public void fromTestContextEventToEnum() {

View File

@@ -27,7 +27,7 @@ import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.junit.MockitoJUnitRunner;
import org.springframework.data.gemfire.tests.mock.test.context.event.TestContextEventType;
import org.springframework.data.gemfire.tests.extensions.spring.test.context.event.TestContextEventType;
import org.springframework.test.context.TestContext;
/**
@@ -37,8 +37,8 @@ import org.springframework.test.context.TestContext;
* @see org.junit.Test
* @see org.mockito.Mockito
* @see org.mockito.junit.MockitoJUnitRunner
* @see org.springframework.data.gemfire.tests.extensions.spring.test.context.event.TestContextEventType
* @see org.springframework.data.gemfire.tests.mock.test.context.DestroyGemFireMockObjectsTestExecutionListener
* @see org.springframework.data.gemfire.tests.mock.test.context.event.TestContextEventType
* @since 0.0.16
*/
@RunWith(MockitoJUnitRunner.class)