org.springframework.test.context.transaction.TransactionalTestExecutionListener Java Examples
The following examples show how to use
org.springframework.test.context.transaction.TransactionalTestExecutionListener.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: TestExecutionListenersTests.java From spring-analysis-note with MIT License | 5 votes |
@Test public void defaultListeners() { List<Class<?>> expected = asList(ServletTestExecutionListener.class, DirtiesContextBeforeModesTestExecutionListener.class, DependencyInjectionTestExecutionListener.class, DirtiesContextTestExecutionListener.class, TransactionalTestExecutionListener.class, SqlScriptsTestExecutionListener.class, EventPublishingTestExecutionListener.class); assertRegisteredListeners(DefaultListenersTestCase.class, expected); }
Example #2
Source File: TestExecutionListenersTests.java From spring-analysis-note with MIT License | 5 votes |
/** * @since 4.1 */ @Test public void defaultListenersMergedWithCustomListenerPrepended() { List<Class<?>> expected = asList(QuuxTestExecutionListener.class, ServletTestExecutionListener.class, DirtiesContextBeforeModesTestExecutionListener.class, DependencyInjectionTestExecutionListener.class, DirtiesContextTestExecutionListener.class, TransactionalTestExecutionListener.class, SqlScriptsTestExecutionListener.class, EventPublishingTestExecutionListener.class); assertRegisteredListeners(MergedDefaultListenersWithCustomListenerPrependedTestCase.class, expected); }
Example #3
Source File: TestExecutionListenersTests.java From spring-analysis-note with MIT License | 5 votes |
/** * @since 4.1 */ @Test public void defaultListenersMergedWithCustomListenerAppended() { List<Class<?>> expected = asList(ServletTestExecutionListener.class, DirtiesContextBeforeModesTestExecutionListener.class, DependencyInjectionTestExecutionListener.class, DirtiesContextTestExecutionListener.class, TransactionalTestExecutionListener.class, SqlScriptsTestExecutionListener.class, EventPublishingTestExecutionListener.class, BazTestExecutionListener.class); assertRegisteredListeners(MergedDefaultListenersWithCustomListenerAppendedTestCase.class, expected); }
Example #4
Source File: TestExecutionListenersTests.java From spring-analysis-note with MIT License | 5 votes |
/** * @since 4.1 */ @Test public void defaultListenersMergedWithCustomListenerInserted() { List<Class<?>> expected = asList(ServletTestExecutionListener.class, DirtiesContextBeforeModesTestExecutionListener.class, DependencyInjectionTestExecutionListener.class, BarTestExecutionListener.class, DirtiesContextTestExecutionListener.class, TransactionalTestExecutionListener.class, SqlScriptsTestExecutionListener.class, EventPublishingTestExecutionListener.class); assertRegisteredListeners(MergedDefaultListenersWithCustomListenerInsertedTestCase.class, expected); }
Example #5
Source File: TestExecutionListenersTests.java From java-technology-stack with MIT License | 5 votes |
@Test public void defaultListeners() { List<Class<?>> expected = asList(ServletTestExecutionListener.class, DirtiesContextBeforeModesTestExecutionListener.class, DependencyInjectionTestExecutionListener.class, DirtiesContextTestExecutionListener.class, TransactionalTestExecutionListener.class, SqlScriptsTestExecutionListener.class); assertRegisteredListeners(DefaultListenersTestCase.class, expected); }
Example #6
Source File: TestExecutionListenersTests.java From java-technology-stack with MIT License | 5 votes |
/** * @since 4.1 */ @Test public void defaultListenersMergedWithCustomListenerPrepended() { List<Class<?>> expected = asList(QuuxTestExecutionListener.class, ServletTestExecutionListener.class, DirtiesContextBeforeModesTestExecutionListener.class, DependencyInjectionTestExecutionListener.class, DirtiesContextTestExecutionListener.class, TransactionalTestExecutionListener.class, SqlScriptsTestExecutionListener.class); assertRegisteredListeners(MergedDefaultListenersWithCustomListenerPrependedTestCase.class, expected); }
Example #7
Source File: TestExecutionListenersTests.java From java-technology-stack with MIT License | 5 votes |
/** * @since 4.1 */ @Test public void defaultListenersMergedWithCustomListenerAppended() { List<Class<?>> expected = asList(ServletTestExecutionListener.class, DirtiesContextBeforeModesTestExecutionListener.class, DependencyInjectionTestExecutionListener.class, DirtiesContextTestExecutionListener.class, TransactionalTestExecutionListener.class, SqlScriptsTestExecutionListener.class, BazTestExecutionListener.class); assertRegisteredListeners(MergedDefaultListenersWithCustomListenerAppendedTestCase.class, expected); }
Example #8
Source File: TestExecutionListenersTests.java From java-technology-stack with MIT License | 5 votes |
/** * @since 4.1 */ @Test public void defaultListenersMergedWithCustomListenerInserted() { List<Class<?>> expected = asList(ServletTestExecutionListener.class, DirtiesContextBeforeModesTestExecutionListener.class, DependencyInjectionTestExecutionListener.class, BarTestExecutionListener.class, DirtiesContextTestExecutionListener.class, TransactionalTestExecutionListener.class, SqlScriptsTestExecutionListener.class); assertRegisteredListeners(MergedDefaultListenersWithCustomListenerInsertedTestCase.class, expected); }
Example #9
Source File: TestExecutionListenersTests.java From spring4-understanding with Apache License 2.0 | 5 votes |
@Test public void defaultListeners() { List<Class<?>> expected = asList(ServletTestExecutionListener.class, DirtiesContextBeforeModesTestExecutionListener.class, DependencyInjectionTestExecutionListener.class, DirtiesContextTestExecutionListener.class, TransactionalTestExecutionListener.class, SqlScriptsTestExecutionListener.class); assertRegisteredListeners(DefaultListenersTestCase.class, expected); }
Example #10
Source File: TestExecutionListenersTests.java From spring4-understanding with Apache License 2.0 | 5 votes |
/** * @since 4.1 */ @Test public void defaultListenersMergedWithCustomListenerPrepended() { List<Class<?>> expected = asList(QuuxTestExecutionListener.class, ServletTestExecutionListener.class, DirtiesContextBeforeModesTestExecutionListener.class, DependencyInjectionTestExecutionListener.class, DirtiesContextTestExecutionListener.class, TransactionalTestExecutionListener.class, SqlScriptsTestExecutionListener.class); assertRegisteredListeners(MergedDefaultListenersWithCustomListenerPrependedTestCase.class, expected); }
Example #11
Source File: TestExecutionListenersTests.java From spring4-understanding with Apache License 2.0 | 5 votes |
/** * @since 4.1 */ @Test public void defaultListenersMergedWithCustomListenerAppended() { List<Class<?>> expected = asList(ServletTestExecutionListener.class, DirtiesContextBeforeModesTestExecutionListener.class, DependencyInjectionTestExecutionListener.class, DirtiesContextTestExecutionListener.class, TransactionalTestExecutionListener.class, SqlScriptsTestExecutionListener.class, BazTestExecutionListener.class); assertRegisteredListeners(MergedDefaultListenersWithCustomListenerAppendedTestCase.class, expected); }
Example #12
Source File: TestExecutionListenersTests.java From spring4-understanding with Apache License 2.0 | 5 votes |
/** * @since 4.1 */ @Test public void defaultListenersMergedWithCustomListenerInserted() { List<Class<?>> expected = asList(ServletTestExecutionListener.class, DirtiesContextBeforeModesTestExecutionListener.class, DependencyInjectionTestExecutionListener.class, BarTestExecutionListener.class, DirtiesContextTestExecutionListener.class, TransactionalTestExecutionListener.class, SqlScriptsTestExecutionListener.class); assertRegisteredListeners(MergedDefaultListenersWithCustomListenerInsertedTestCase.class, expected); }