You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Core] Add hook method name to TeamCityPlugin (#2881)
The TeamCityPlugin for IntelliJ IDEA now uses the hook's method name
for the name of the hook itself.
For example, if we have a hook with the method name
`com.example.HookDefinition.beforeHook()``, the generated name will be
`Before(beforeHook)`.
If we have a hook with the method name
`com.example.HookDefinition.<init>(HookDefinition.java:12)`, the
generated name will be `Before(HookDefinition)`.
If the hook's method can't be identified then fallback to simple
hook name.
Closes#2798
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
10
10
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
11
11
12
12
## [Unreleased]
13
+
### Changed
14
+
-[Core] The TeamCityPlugin for IntelliJ IDEA now uses the hook's method name for the name of the hook itself. ([#2798](https://github.com/cucumber/cucumber-jvm/issues/2798) V.V. Belov)
0 commit comments