-
Notifications
You must be signed in to change notification settings - Fork 142
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
MkChecks
implementation
#1622
MkChecks
implementation
#1622
Conversation
add MkChecks and MkCheck implementation
@yegor256 Could you have a look, please? |
pom.xml
Outdated
@@ -116,6 +116,11 @@ OF THE POSSIBILITY OF SUCH DAMAGE. | |||
<artifactId>guava</artifactId> | |||
<version>31.1-jre</version> | |||
</dependency> | |||
<dependency> | |||
<groupId>org.cactoos</groupId> |
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.
@volodya-lombrozo can't you use Guava instead? It's already in the list of dependencies and provides the same functionality of turning an Iterable
to a List
.
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.
@yegor256 Done. Could you have a look, again, please?
@yegor256 Reminder |
@rultor merge |
@yegor256 Could you release a new version, please? |
@rultor release, tag is |
I started implementing a feature related to
Checks
, but I quickly realized that I lacked testing capabilities. Therefore, I decided to improve my implementation by adding correct implementations ofMkChecks
andMkCheck
. In my pull request, I added the following changes:MkChecks
andMkCheck
.MkChecks
andMkCheck
.Please, let me know if that PR too big, I'll try to split it.