-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[7hH8ZRTU] Add new regex matcher by group names #654
Conversation
cbf76bb
to
d059533
Compare
fc38fb1
to
c969993
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Really cool! One small typo+ , otherwise looks good!
@@ -532,6 +538,139 @@ public void testRegexGroups() { | |||
}); | |||
} | |||
|
|||
@Test | |||
public void singleGroupNyName() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public void singleGroupNyName() { | |
public void singleGroupByName() { |
} | ||
|
||
@Test | ||
public void multipleGroupsNyName() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public void multipleGroupsNyName() { | |
public void multipleGroupsByName() { |
} | ||
|
||
@Test | ||
public void groupNyNameWithMissingFirstGroup() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public void groupNyNameWithMissingFirstGroup() { | |
public void groupByNameWithMissingFirstGroup() { |
} | ||
|
||
@Test | ||
public void groupNyNameWithMissingSecondGroup() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public void groupNyNameWithMissingSecondGroup() { | |
public void groupByNameWithMissingSecondGroup() { |
} | ||
|
||
@Test | ||
public void groupNyNameNoMatches() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public void groupNyNameNoMatches() { | |
public void groupByNameNoMatches() { |
} | ||
|
||
@Test | ||
public void groupNyNameWithInvalidPattern1() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public void groupNyNameWithInvalidPattern1() { | |
public void groupByNameWithInvalidPattern1() { |
} | ||
|
||
@Test | ||
public void groupNyNameWithInvalidPattern2() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public void groupNyNameWithInvalidPattern2() { | |
public void groupByNameWithInvalidPattern2() { |
} | ||
|
||
@Test | ||
public void groupNyNameWithNoGroupNames() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public void groupNyNameWithNoGroupNames() { | |
public void groupByNameWithNoGroupNames() { |
Added a new function for a support case surrounding the ability to reference group names.
Docs: https://github.com/neo4j/docs-apoc/pull/312