From 8f3e71c23748db775dd6f5f25f20fa77e6d5e5b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Victor=20No=C3=ABl?= Date: Sun, 3 Jan 2021 14:37:42 +0100 Subject: [PATCH] (#1445) Some todos to continue the work --- src/main/java/org/cactoos/package-info.java | 4 ++++ src/test/java/org/cactoos/experimental/TimedTest.java | 3 +++ 2 files changed, 7 insertions(+) diff --git a/src/main/java/org/cactoos/package-info.java b/src/main/java/org/cactoos/package-info.java index 599483520b..9aa38af262 100644 --- a/src/main/java/org/cactoos/package-info.java +++ b/src/main/java/org/cactoos/package-info.java @@ -35,5 +35,9 @@ * @since 0.1 * @see Project site www.cactoos.org * @see GitHub repository + * @todo #1445:30min For consistency sake with Func, let's + * - introduce envelopes for Proc, BiProc, BiFunc, Runnable and Callable + * - have FuncOf, ProcOf, etc extend their envelope to simplify their code + * - apply on other classes that could benefit from it */ package org.cactoos; diff --git a/src/test/java/org/cactoos/experimental/TimedTest.java b/src/test/java/org/cactoos/experimental/TimedTest.java index 06f518ddb9..6b4e6bc413 100644 --- a/src/test/java/org/cactoos/experimental/TimedTest.java +++ b/src/test/java/org/cactoos/experimental/TimedTest.java @@ -41,6 +41,9 @@ * Test case for {@link Timed}. * * @since 1.0.0 + * @todo #1445:30min Replace all the usage of Repeated in tests that + * are used to execute the same test multiple times with the use of + * the RepeatedTest annotation from Junit 5. * @checkstyle ClassDataAbstractionCouplingCheck (500 lines) */ final class TimedTest {