**关闭。**此题需要debugging details。目前不接受答复。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
10小时前关闭。
Improve this question
我想写一个正则表达式来匹配下面的流调用。
Assertions.assertThatThrownBy(() -> ...)
.isInstanceOf(ValidationException.class);
我写的像Assertions\.assertThatExceptionOfType\(.*\)\.isThrownBy\(.*\);
我使用.*
来匹配函数中的所有字符。
但是它不能正确匹配上面的流调用,我应该如何修改它才能匹配?
任何帮助都是非常受欢迎的。
1条答案
按热度按时间oaxa6hgo1#
如果你想用括号之间的任何东西来匹配方法名,这个正则表达式对我来说很有用: