Skip to content

Commit 6e3d26a

Browse files
authored
Merge pull request #5300 from jdi-testing/add_pdd
Enable PDD bot
2 parents 7838367 + 3aaa823 commit 6e3d26a

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

config/checkstyle/checkstyle.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -352,10 +352,4 @@
352352
<property name="id" value="MatcherBooleanWithoutMessage_Error" />
353353
<property name="fileExtensions" value="java"/>
354354
</module>
355-
<module name="RegexpSingleline">
356-
<property name="severity" value="error" />
357-
<property name="format" value="TODO" />
358-
<property name="message" value="use @todo in comment to create a task to fix" />
359-
<property name="id" value="TODOFormat_Error" />
360-
</module>
361355
</module>

jdi-light-mobile-selenium3/src/main/java/com/epam/jdi/light/mobile/elements/pageobjects/annotations/WebAnnotationsUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ private static By getAppLocator(MobileFindBy locator) {
6060
if (!"".equals(locator.androidDataMatcher()))
6161
return MobileBy.androidDataMatcher(locator.androidDataMatcher());
6262
/*
63-
@todo Yet to be checked (native app required)
63+
@todo #5251 Yet to be checked (native app required)
6464
if (!"".equals(locator.androidViewTag()))
6565
return MobileBy.AndroidViewTag(locator.androidViewTag());
6666
if (!"".equals(locator.image()))

jdi-light-mobile/src/main/java/com/epam/jdi/light/mobile/elements/pageobjects/annotations/WebAnnotationsUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ private static By getAppLocator(MobileFindBy locator) {
7777
if (!"".equals(locator.androidDataMatcher()))
7878
return AppiumBy.androidDataMatcher(locator.androidDataMatcher());
7979
/*
80-
@todo: Yet to be checked (native app required)
80+
@todo #5251 Yet to be checked (native app required)
8181
if (!"".equals(locator.androidViewTag()))
8282
return AppiumBy.androidViewTag(locator.androidViewTag());
8383
if (!"".equals(locator.image()))

jdi-light-vuetify-tests/src/main/java/io/github/com/pages/ItemGroupsPage.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@
1010

1111
public class ItemGroupsPage extends VuetifyPage {
1212

13-
// @todo v-card is locator for the Card class
13+
/**
14+
* @todo #5298 v-card is locator for the Card class, so wrong logic is used
15+
*/
16+
1417
@UI("#ActiveClassItemGroup .v-card")
1518
public static PrimaryItemGroup activeClassItemGroup;
1619

0 commit comments

Comments
 (0)