Skip to content

Commit

Permalink
feat(objectionary#24): Remove the old puzzle and add one more new puzzle
Browse files Browse the repository at this point in the history
  • Loading branch information
volodya-lombrozo committed Sep 4, 2023
1 parent 1a7c202 commit 16cc027
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 0 additions & 8 deletions src/main/java/org/eolang/jeo/Optimization.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,6 @@
* The entrypoint class for the optimization.
*
* @since 0.1.0
* @todo #13:90min Add unit tests for Optimization class.
* The unit tests should cover the next cases:
* - The classes directory is empty.
* - The classes directory does not exist.
* - The classes directory has some clases.
* - The classes directory has some classes and some subdirectories.
* - The classes directory has some classes and some garbage.
* When the unit tests are ready, remove that puzzle.
* @todo #13:90min Implement back transformation to bytecode.
* The Optimization class should transform the IRs back to bytecode.
* When the back transformation is ready, remove that puzzle.
Expand Down
10 changes: 9 additions & 1 deletion src/test/java/org/eolang/jeo/OptimizationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,14 @@
* Test case for {@link Optimization}.
*
* @since 0.1.0
* @todo #24:90min Add unit tests for Optimization class.
* We still have to add the next unit tests:
* - The classes directory is empty.
* - The classes directory does not exist.
* - The classes directory has some clases.
* - The classes directory has some classes and some subdirectories.
* - The classes directory has some classes and some garbage.
* When the unit tests are ready, remove that puzzle.
*/
class OptimizationTest {

Expand All @@ -58,4 +66,4 @@ void appliesAllBoosts(@TempDir final Path classes) throws IOException {
Matchers.equalTo(true)
);
}
}
}

0 comments on commit 16cc027

Please sign in to comment.