BAEL-19369 go through the integration test results and see what NEW failing tests we have
- Fixes ComponentScanAspectJFilterAppUnitTest
This commit is contained in:
parent
dda3ef2ae1
commit
23bc24feb1
|
@ -85,6 +85,12 @@
|
||||||
<artifactId>commons-io</artifactId>
|
<artifactId>commons-io</artifactId>
|
||||||
<version>${commons.io.version}</version>
|
<version>${commons.io.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.aspectj</groupId>
|
||||||
|
<artifactId>aspectjweaver</artifactId>
|
||||||
|
<version>${aspectjweaver.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- Spring -->
|
<!-- Spring -->
|
||||||
<!-- <dependency>-->
|
<!-- <dependency>-->
|
||||||
<!-- <groupId>org.springframework</groupId>-->
|
<!-- <groupId>org.springframework</groupId>-->
|
||||||
|
@ -157,6 +163,7 @@
|
||||||
<spring-boot.version>1.5.2.RELEASE</spring-boot.version>
|
<spring-boot.version>1.5.2.RELEASE</spring-boot.version>
|
||||||
<mockito.version>1.10.19</mockito.version>
|
<mockito.version>1.10.19</mockito.version>
|
||||||
<assertj.version>3.12.2</assertj.version>
|
<assertj.version>3.12.2</assertj.version>
|
||||||
|
<aspectjweaver.version>1.9.5</aspectjweaver.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
</project>
|
</project>
|
|
@ -16,7 +16,7 @@ import static org.hamcrest.CoreMatchers.*;
|
||||||
|
|
||||||
@RunWith(SpringRunner.class)
|
@RunWith(SpringRunner.class)
|
||||||
@SpringBootTest(classes = ComponentScanAspectJFilterApp.class)
|
@SpringBootTest(classes = ComponentScanAspectJFilterApp.class)
|
||||||
public class ComponentScanAspectJFilterAppIntegrationTest {
|
public class ComponentScanAspectJFilterAppUnitTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void whenAspectJFilterIsUsed_thenComponentScanShouldRegisterBeanMatchingAspectJCreteria() {
|
public void whenAspectJFilterIsUsed_thenComponentScanShouldRegisterBeanMatchingAspectJCreteria() {
|
Loading…
Reference in New Issue