Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
onacit committed Apr 27, 2024
1 parent c450686 commit 85d1eab
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
* @param <ACTUAL> actual type parameter
* @author Jin Kwon &lt;onacit_at_gmail.com&gt;
*/
@SuppressWarnings({
"java:S119" // <SELF ...>
})
public interface BeanAssert<SELF extends BeanAssert<SELF, ACTUAL>, ACTUAL>
extends PropertyAssert<SELF, ACTUAL> {

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package com.github.jinahya.assertj.validation;

@SuppressWarnings({
"java:S119" // <ASSERT ...>
})
abstract class AbstractBeanAssertTest<ASSERT extends AbstractBeanAssert<ASSERT, ?>>
extends BeanAssertTest<ASSERT> {

AbstractBeanAssertTest(final Class<ASSERT> assertionClass) {
super(assertionClass);
}
}

0 comments on commit 85d1eab

Please sign in to comment.