英文:
How do you write a JUnit test for an empty function Pointcut
问题
我正在尝试为这个方法编写一个JUnit测试。我对Pointcut不太熟悉。有什么建议吗?
/**
* 匹配所有repositories、services和Web REST endpoints的切入点。
*/
@Pointcut("within(@org.springframework.stereotype.Repository *)" +
" || within(@org.springframework.stereotype.Service *)" +
" || within(@org.springframework.web.bind.annotation.RestController *)")
public void springBeanPointcut() {
// 由于这只是一个切入点,所以方法是空的,具体实现在advices中。
}
英文:
I am trying to write a JUnit test for this method. I am not familiar with Pointcut. Any advice?
/**
* Pointcut that matches all repositories, services and Web REST endpoints.
*/
@Pointcut("within(@org.springframework.stereotype.Repository *)" +
" || within(@org.springframework.stereotype.Service *)" +
" || within(@org.springframework.web.bind.annotation.RestController *)")
public void springBeanPointcut() {
// Method is empty as this is just a Pointcut, the implementations are in the advices.
}
答案1
得分: 1
只需创建一个新的测试,并让它调用 springBeanPointcut() 函数。
英文:
Just make a new test and have it call springBeanPointcut()
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论